disallow cms from being area kicked

This commit is contained in:
in1tiate 2021-08-01 09:27:05 -05:00
parent f2943c5ebe
commit 976e1edb07

View File

@ -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.");