From ae10a45a27b9d4ba1381a0bbf80cd6f3cc84418c Mon Sep 17 00:00:00 2001 From: Mattia Migliorini Date: Tue, 10 Mar 2026 08:25:04 +0100 Subject: [PATCH] Remove useless comment --- src/core/game/GameImpl.ts | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/core/game/GameImpl.ts b/src/core/game/GameImpl.ts index abebd2252..ab2a179f5 100644 --- a/src/core/game/GameImpl.ts +++ b/src/core/game/GameImpl.ts @@ -214,8 +214,6 @@ export class GameImpl implements Game { ...this._nations.map((n) => n.playerInfo), ]; const playerToTeam = assignTeams(allPlayers, this.playerTeams); - // this.playerTeams is updated in-place by assignTeams - for (const [playerInfo, team] of playerToTeam.entries()) { if (team === "kicked") { console.warn(`Player ${playerInfo.name} was kicked from team`);