From 49385ede3d1c1c041abe8f86cc1fc2fa1aee8db7 Mon Sep 17 00:00:00 2001 From: caitsith2 Date: Fri, 24 Apr 2020 21:42:13 -0700 Subject: [PATCH] Change win text --- MultiServer.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/MultiServer.py b/MultiServer.py index fb4a2fb7..1414b7dc 100644 --- a/MultiServer.py +++ b/MultiServer.py @@ -740,8 +740,9 @@ async def process_client_cmd(ctx: Context, client: Client, cmd, args): elif cmd == 'GameFinished': if (client.team, client.slot) not in ctx.client_finished_game: - notify_all(ctx, client.name + ' has finished the game.') - print(client.name + ' has finished the game.') + finished_msg = f'{client.name} (Team #{client.team + 1}) has found the triforce.' + notify_all(ctx, finished_msg) + print(finished_msg) ctx.client_finished_game[client.team, client.slot] = True # TODO: Add auto-forfeit code here