mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-19 12:18:00 +00:00
- Fixed the AI incorrectly considering sorcery-speed tap abilities like Outlast, thus never using them.
This commit is contained in:
@@ -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"));
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user