Demonic hordes no longer hard coded

This commit is contained in:
RedDeckWins
2013-05-24 23:53:03 +00:00
parent 802c5a930d
commit 55cf47e61e
3 changed files with 8 additions and 3 deletions

View File

@@ -60,7 +60,8 @@ public class ChoosePlayerEffect extends SpellAbilityEffect {
} else if ("Pump".equals(sa.getParam("AILogic"))) {
chosen = choices.contains(p) ? p : choices.get(0);
} else {
chosen = p;
System.out.println("Default player choice logic.");
chosen = choices.contains(p) ? p : choices.get(0);
}
}

View File

@@ -91,7 +91,7 @@ public class Upkeep extends Phase {
Upkeep.upkeepTheAbyss(game);
Upkeep.upkeepDropOfHoney(game);
Upkeep.upkeepDemonicHordes(game);
//Upkeep.upkeepDemonicHordes(game);
Upkeep.upkeepTangleWire(game);
Upkeep.upkeepOathOfDruids(game);