fixed reversi colors being switched, causing multiple issues

This commit is contained in:
Ticho Hidding
2025-12-08 17:14:31 +01:00
parent 3a8b1c2454
commit adc7b1a8f3
3 changed files with 12 additions and 13 deletions

View File

@@ -39,10 +39,10 @@ public final class ReversiR extends AbstractGame<ReversiR> {
private void addStartPieces() {
this.setBoard(27, 1);
this.setBoard(28, 0);
this.setBoard(35, 0);
this.setBoard(36, 1);
this.setBoard(27, 0);
this.setBoard(28, 1);
this.setBoard(35, 1);
this.setBoard(36, 0);
updateFilledCellsSet();
}
private void updateFilledCellsSet() {