This commit is contained in:
Cyprien111
2025-04-07 09:10:48 +02:00
parent adbee42389
commit 4383826463

View File

@@ -67,7 +67,7 @@ public class GomokuGame {
public void play(Player player) { public void play(Player player) {
GomokuCell cellToPlay = player.chooseMove(board); GomokuCell cellToPlay = player.chooseMove(board);
cellToPlay.setState(colorP1); cellToPlay.setState(player.color);
} }