- Prevent Crew from taking negative power of creatures on the battlefield into consideration when determining the total amount of power available on the battlefield (instead treating them as 0 now).

This commit is contained in:
Agetian
2017-01-11 14:35:33 +00:00
parent e86a709d72
commit f14de08c20
3 changed files with 7 additions and 4 deletions

View File

@@ -1169,7 +1169,7 @@ public class HumanCostDecision extends CostDecisionMakerBase {
inp.setCancelAllowed(true);
inp.showAndWait();
if (inp.hasCancelled() || CardLists.getTotalPower(inp.getSelected()) < i) {
if (inp.hasCancelled() || CardLists.getTotalPower(inp.getSelected(), true) < i) {
return null;
}
return PaymentDecision.card(inp.getSelected());