- Fixed the AI incorrectly considering sorcery-speed tap abilities like Outlast, thus never using them.

This commit is contained in:
Agetian
2017-08-18 06:07:37 +00:00
parent 06359b9d06
commit 2c9f0e3c7d

View File

@@ -1101,7 +1101,7 @@ public class ComputerUtil {
return (sa.getHostCard().isCreature() return (sa.getHostCard().isCreature()
&& sa.getPayCosts().hasTapCost() && sa.getPayCosts().hasTapCost()
&& (ph.getPhase().isBefore(PhaseType.COMBAT_DECLARE_BLOCKERS) && (ph.getPhase().isBefore(PhaseType.COMBAT_DECLARE_BLOCKERS)
|| !ph.getNextTurn().equals(sa.getActivatingPlayer())) && !ph.getNextTurn().equals(sa.getActivatingPlayer()))
&& !sa.getHostCard().hasSVar("EndOfTurnLeavePlay") && !sa.getHostCard().hasSVar("EndOfTurnLeavePlay")
&& !sa.hasParam("ActivationPhases")); && !sa.hasParam("ActivationPhases"));
} }