From a742889a8eaf8789ab570e47fb04559a2f979f4d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20Untersch=C3=BCtz?= Date: Mon, 5 Jan 2026 21:10:47 +0100 Subject: [PATCH] Remove redundant `gameStarting` reset logic in `game.js`. --- cmd/client/web/game.js | 4 ---- 1 file changed, 4 deletions(-) diff --git a/cmd/client/web/game.js b/cmd/client/web/game.js index 95abacc..373081e 100644 --- a/cmd/client/web/game.js +++ b/cmd/client/web/game.js @@ -460,10 +460,6 @@ function joinRoom() { gameStarting = false; }, 300); - // Reset gameStarting für Lobby - gameStarting = false; - }, 300); - // Trigger WASM game start (im Hintergrund) if (window.startGame) { console.log('🎮 Calling window.startGame with:', 'coop', playerName, roomID, teamName, false);