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`);