diff --git a/src/player/malte/MalteAI.java b/src/player/malte/MalteAI.java index 9f4e2f0..53ac38e 100644 --- a/src/player/malte/MalteAI.java +++ b/src/player/malte/MalteAI.java @@ -65,14 +65,12 @@ public class MalteAI implements Player{ } // Get options which would lead to instant win. Set winningOptions = getRowCompletionOptions(options, board, id); - System.out.println("WINNING: " + winningOptions); for (Integer i: winningOptions) { return i.intValue(); } // Get options which would prevent an instant win of the enemy. enemyID = enemyID == 0 ? 1: enemyID; Set preventionsOptions = getRowCompletionOptions(options, board, enemyID); - System.out.println("PREVENT: " + preventionsOptions); for (Integer i: preventionsOptions) { return i.intValue(); }