Update AiController.java

This commit is contained in:
Seravy
2018-02-19 12:50:15 +00:00
parent cbc0335d90
commit e3b4c59b9f

View File

@@ -733,8 +733,7 @@ public class AiController {
neededMana = sac.getCostMana().getMana().getCMC(); neededMana = sac.getCostMana().getMana().getCMC();
if (sac.hasSpecificCostType(CostPayLife.class) if (sac.hasSpecificCostType(CostPayLife.class)
|| (sac.hasSpecificCostType(CostDiscard.class)) || || (sac.hasSpecificCostType(CostDiscard.class)) ||
(sac.hasSpecificCostType(CostSacrifice.class)) (sac.hasSpecificCostType(CostSacrifice.class))) {
) {
neededMana = 999; neededMana = 999;
} }
} }