Fix ante cards (#2089)

This commit is contained in:
tool4ever
2022-12-12 22:23:32 +01:00
committed by GitHub
parent 9d761ca7cf
commit c303222f6f
6 changed files with 8 additions and 12 deletions

View File

@@ -39,8 +39,6 @@ public class MillAi extends SpellAbilityAi {
} else if (aiLogic.equals("LilianaMill")) {
// Only mill if a "Raise Dead" target is available, in case of control decks with few creatures
return CardLists.filter(ai.getCardsIn(ZoneType.Graveyard), CardPredicates.Presets.CREATURES).size() >= 1;
} else if (aiLogic.equals("Rebirth")) {
return ai.getLife() <= 8;
}
return true;
}