From 66a880a086cf50f3cc09428b453bc623aed2d36f Mon Sep 17 00:00:00 2001 From: floogal <67554336+floogal@users.noreply.github.com> Date: Wed, 18 Aug 2021 22:53:48 +0100 Subject: [PATCH] Update moderation.py removed unnecessary update for as2 client and also cheat ban, which already closes the connection --- houdini/handlers/play/moderation.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/houdini/handlers/play/moderation.py b/houdini/handlers/play/moderation.py index b029469..6a5d2a5 100644 --- a/houdini/handlers/play/moderation.py +++ b/houdini/handlers/play/moderation.py @@ -111,7 +111,6 @@ async def cheat_ban(p, penguin_id, hours=24, comment=''): if penguin_id in p.server.penguins_by_id: await player.send_error_and_disconnect(611, comment) - await player.close() async def moderator_kick(p, penguin_id): @@ -147,7 +146,6 @@ async def moderator_ban(p, penguin_id, hours=24, comment='', message=''): if penguin_id in p.server.penguins_by_id: if player.is_vanilla_client: await player.send_xt('ban', 612, 2, hours, comment) + await player.close() else: await player.send_error_and_disconnect(610, comment) - - await player.close()