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.
This commit is contained in:
Ben 2020-06-08 23:34:45 +01:00
parent 6202fdf875
commit edafefd8e7

View File

@ -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()