Merge pull request #168 from AttorneyOnline/cm-areakick

disallow cms from being area kicked
This commit is contained in:
Rose Witchaven 2021-08-01 09:46:59 -05:00 committed by GitHub
commit 231e33434e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -227,6 +227,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.");