small merge fixes

This commit is contained in:
Ticho Hidding
2025-10-03 02:46:48 +02:00
parent c020269f6e
commit 3471ae54a5
3 changed files with 4 additions and 6 deletions

View File

@@ -6,10 +6,9 @@ public abstract class TurnBasedGame extends Game {
protected int currentTurn;
protected TurnBasedGame(int rowSize, int columnSize, int turns) {
assert turns >= 2;
super(rowSize, columnSize);
this.turns = turns;
assert turns >= 2;
this.turns = turns;
}
protected TurnBasedGame(TurnBasedGame other) {