|
|
@ -173,10 +173,10 @@ public class GameLogic extends JPanel { |
|
|
|
frame.setResizable(true); |
|
|
|
frame.setVisible(true); |
|
|
|
|
|
|
|
gui.start(); |
|
|
|
gui.start(false); |
|
|
|
} |
|
|
|
|
|
|
|
public void start() { |
|
|
|
public void start(boolean test) { |
|
|
|
this.gameState = GameLogic.PREPARATION; |
|
|
|
this.playerMove = true; |
|
|
|
|
|
|
@ -202,7 +202,8 @@ public class GameLogic extends JPanel { |
|
|
|
|
|
|
|
// enter game loop |
|
|
|
this.gameState = GameLogic.RUNNING; |
|
|
|
this.nextMove(true); |
|
|
|
if (!test) |
|
|
|
this.nextMove(true); |
|
|
|
} |
|
|
|
|
|
|
|
public void nextMove(boolean playerMove) { |
|
|
|