- AI shouldn't miss mandatory triggers for FogAi

This commit is contained in:
Michael Kamensky
2021-02-17 07:23:27 +03:00
parent e28df0a723
commit f78a375402

View File

@@ -113,6 +113,6 @@ public class FogAi extends SpellAbilityAi {
chance = game.getPhaseHandler().getPhase().isAfter(PhaseType.COMBAT_DAMAGE); chance = game.getPhaseHandler().getPhase().isAfter(PhaseType.COMBAT_DAMAGE);
} }
return chance; return chance || mandatory;
} }
} }