Updated 'LobbyState' class.

Updated the 'LobbyState' class by updating the 'initializeGame' method in it.
This commit is contained in:
Daniel Grigencha
2024-12-05 23:45:24 +01:00
parent f0080118d0
commit d8bb458e9c

View File

@@ -49,6 +49,7 @@ public void exit() {
public void initializeGame() {
for (var player : this.logic.getGame().getPlayers().values()) {
player.initialize();
player.addHandCard(this.logic.getGame().draw());
}
}