From 15d9b895775a159a078366d69e046fcd5f1f7f7e Mon Sep 17 00:00:00 2001 From: Thibaud Date: Wed, 25 Sep 2024 15:40:49 +0200 Subject: [PATCH] fix endgame --- server.mts | 1 + 1 file changed, 1 insertion(+) diff --git a/server.mts b/server.mts index 7127488..6535732 100644 --- a/server.mts +++ b/server.mts @@ -92,6 +92,7 @@ wss.on("connection", (ws) => { kind: "endgame", data: { issue: "lose" } as EndGame } as Message)); + endGame = true; } } });