From fd10ddf86d579f49d223b3e4da6b9f4d6ab51603 Mon Sep 17 00:00:00 2001 From: clucksoft Date: Tue, 19 Nov 2013 12:48:59 -0800 Subject: [PATCH] suspend/ban kick fix --- zone/command.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/zone/command.cpp b/zone/command.cpp index 0b562d6c8..9d0a25a8a 100644 --- a/zone/command.cpp +++ b/zone/command.cpp @@ -6364,7 +6364,7 @@ void command_ban(Client *c, const Seperator *sep) client = entity_list.GetClientByName(sep->arg[1]); if(client) { - client->Kick(); + client->WorldKick(); } else { @@ -6426,7 +6426,7 @@ void command_suspend(Client *c, const Seperator *sep) Client *BannedClient = entity_list.GetClientByName(sep->arg[1]); if(BannedClient) - BannedClient->Kick(); + BannedClient->WorldKick(); else { ServerPacket* pack = new ServerPacket(ServerOP_KickPlayer, sizeof(ServerKickPlayer_Struct));