- Adding AI for Combustible Gearhulk based upon known information.

- Adding current Energy count to payenergy cost
This commit is contained in:
Sol
2016-09-23 14:36:21 +00:00
parent 8563218aa2
commit cbaa40d499
3 changed files with 22 additions and 7 deletions

View File

@@ -581,7 +581,8 @@ public class HumanCostDecision extends CostDecisionMakerBase {
}
}
if (player.canPayEnergy(c) && player.getController().confirmPayment(cost, "Pay " + c + " Energy?")) {
if (player.canPayEnergy(c) &&
player.getController().confirmPayment(cost, "Pay " + c + " Energy? (You have " + player.getCounters(CounterType.ENERGY) + ")")) {
return PaymentDecision.number(c);
}
return null;