From 976e1edb07511bf15caefc475a2c07a8160106b7 Mon Sep 17 00:00:00 2001 From: in1tiate Date: Sun, 1 Aug 2021 09:27:05 -0500 Subject: [PATCH] disallow cms from being area kicked --- core/src/commands/area.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/core/src/commands/area.cpp b/core/src/commands/area.cpp index 0a10900..304530e 100644 --- a/core/src/commands/area.cpp +++ b/core/src/commands/area.cpp @@ -226,6 +226,10 @@ void AOClient::cmdAreaKick(int argc, QStringList argv) sendServerMessage("That does not look like a valid ID."); return; } + if (server->areas[current_area]->owners().contains(idx)) { + sendServerMessage("You cannot kick another CM!"); + return; + } AOClient* client_to_kick = server->getClientByID(idx); if (client_to_kick == nullptr) { sendServerMessage("No client with that ID found.");