diff --git a/src/model/comPlayer/CountingPlayer.java b/src/model/comPlayer/CountingPlayer.java index 201b91c..b4ce4fc 100644 --- a/src/model/comPlayer/CountingPlayer.java +++ b/src/model/comPlayer/CountingPlayer.java @@ -198,7 +198,8 @@ public class CountingPlayer implements Player { return moves.get(PlayerModel.rand.nextInt(moves.size())); } - else if (remainingPlays > prediction) { + // If we WANT to go to more plays than we EXPECT to and a + else if (remainingPlays > prediction + 2) { for (int i = 0;; i++) { ArrayList choices = new ArrayList(); for (int r = 0; r < Board.NUM_ROWS; r++) {