fix(DevWeb): End the game at the first round

This commit is contained in:
Lucàs
2024-04-29 17:09:24 +02:00
parent 2ea458e3d5
commit 4b2415e47c
@@ -368,7 +368,7 @@ public class Game implements Serializable {
currentRound++;
if (currentRound > nbRounds) gameState = GameState.FINISHED;
return (currentRound > nbRounds);
return gameState != GameState.FINISHED;
}
}