From 2462d49de31cc205ab04c44e4e67e289fdb1576c Mon Sep 17 00:00:00 2001 From: Sloth Date: Fri, 27 Jul 2012 20:27:38 +0000 Subject: [PATCH] - Fixed and cleaned the general AI inputs. --- src/main/java/forge/game/player/ComputerAIGeneral.java | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/main/java/forge/game/player/ComputerAIGeneral.java b/src/main/java/forge/game/player/ComputerAIGeneral.java index 234ce32baa8..c61df2be055 100644 --- a/src/main/java/forge/game/player/ComputerAIGeneral.java +++ b/src/main/java/forge/game/player/ComputerAIGeneral.java @@ -283,7 +283,6 @@ public class ComputerAIGeneral implements Computer { Singletons.getModel().getGameState().getPhaseHandler().setNeedToNextPhase(true); } - // end of Human's turn /** *

* end_of_turn. @@ -291,7 +290,9 @@ public class ComputerAIGeneral implements Computer { */ @Override public final void endOfTurn() { - this.playSpellAbilitiesStackEmpty(); + //This is only called in the computer turn + //this.playSpellAbilitiesStackEmpty(); + Singletons.getModel().getGameState().getPhaseHandler().passPriority(); } /**