From 4e3ddbd0908441b25084274b09544a23f350d7b3 Mon Sep 17 00:00:00 2001 From: in1tiate Date: Thu, 29 Jul 2021 12:18:42 -0500 Subject: [PATCH] Fix being able to area-kick someone in a different locked area --- 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 0ecc31f..0a10900 100644 --- a/core/src/commands/area.cpp +++ b/core/src/commands/area.cpp @@ -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."); }