[Simulated AI] Remove limitation of playing spells only in MAIN2 which I added a few commits ago.

This commit is contained in:
Myrd
2016-12-26 05:42:19 +00:00
parent a78455051d
commit 4f61ca9f3b

View File

@@ -81,10 +81,6 @@ public class SpellAbilityPicker {
public SpellAbility chooseSpellAbilityToPlay(SimulationController controller) {
printOutput = (controller == null);
if (game.getPhaseHandler().getPhase().isBefore(PhaseType.MAIN2)) {
return null;
}
// Pass if top of stack is owned by me.
if (!game.getStack().isEmpty() && game.getStack().peekAbility().getActivatingPlayer().equals(player)) {