MultiServer: fix a refactor mistake

This commit is contained in:
Fabian Dill 2021-10-25 08:24:32 +02:00
parent 4e3b8a5178
commit c152790011
1 changed files with 2 additions and 2 deletions

View File

@ -1240,9 +1240,9 @@ async def process_client_cmd(ctx: Context, client: Client, args: dict):
reply.append({"cmd": 'ReceivedItems', "index": 0, "items": items})
client.send_index = len(items)
if not client.auth: # if this was a Re-Connect, don't print to console
await on_client_joined(ctx, client)
else:
client.auth = True
await on_client_joined(ctx, client)
await ctx.send_msgs(client, reply)