Merge pull request #159 from AttorneyOnline/fix-area-kick

Fix being able to area-kick someone in a different locked area
This commit is contained in:
Rose Witchaven 2021-07-29 12:20:09 -05:00 committed by GitHub
commit fd6f8e527d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -231,6 +231,10 @@ void AOClient::cmdAreaKick(int argc, QStringList argv)
sendServerMessage("No client with that ID found.");
return;
}
else if (client_to_kick->current_area != current_area) {
sendServerMessage("That client is not in this area.");
return;
}
client_to_kick->changeArea(0);
sendServerMessage("Client " + argv[0] + " kicked back to area 0.");
}