From 92350831fc9117796722fb5f76420ed158f9f78f Mon Sep 17 00:00:00 2001 From: Fabian Dill Date: Thu, 30 Apr 2020 04:44:57 +0200 Subject: [PATCH] notify_all already prints to local console via logging --- MultiServer.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/MultiServer.py b/MultiServer.py index 4e6261e6..8eebc6fc 100644 --- a/MultiServer.py +++ b/MultiServer.py @@ -803,7 +803,6 @@ async def process_client_cmd(ctx: Context, client: Client, cmd, args): if ctx.client_game_state[client.team, client.slot] != CLIENT_GOAL: finished_msg = f'{client.name} (Team #{client.team + 1}) has found the triforce.' notify_all(ctx, finished_msg) - print(finished_msg) ctx.client_game_state[client.team, client.slot] = CLIENT_GOAL if cmd == 'Say': @@ -812,7 +811,6 @@ async def process_client_cmd(ctx: Context, client: Client, cmd, args): return notify_all(ctx, ctx.get_aliased_name(client.team, client.slot) + ': ' + args) - print(args) client.messageprocessor(args)