From edafefd8e7765c861668f9d1820f2d1afacfb2f4 Mon Sep 17 00:00:00 2001 From: Ben Date: Mon, 8 Jun 2020 23:34:45 +0100 Subject: [PATCH] Remove active check on world auth Causes bug where players on 7 day grace period cannot login. Also not needed since check is performed on login auth. --- houdini/handlers/login/world.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/houdini/handlers/login/world.py b/houdini/handlers/login/world.py index b4d95b4..4107a05 100644 --- a/houdini/handlers/login/world.py +++ b/houdini/handlers/login/world.py @@ -22,9 +22,6 @@ async def world_login(p, data): if data is None: return await p.send_error_and_disconnect(100) - if not data.active: - return await p.close() - if data.permaban: return await p.close()