diff --git a/src/forge/Cost_Payment.java b/src/forge/Cost_Payment.java index e2fe5a414ff..2bc9c4176d4 100644 --- a/src/forge/Cost_Payment.java +++ b/src/forge/Cost_Payment.java @@ -320,7 +320,7 @@ public class Cost_Payment { } // double check if counters available? Real check is in ComputerUtil.canPayAdditionalCosts() - if (cost.getCounterNum() > card.getCounters(cost.getCounterType())){ + if (cost.getSubCounter() && cost.getCounterNum() > card.getCounters(cost.getCounterType())){ System.out.println("Not enough " + cost.getCounterType() + " on " + card.getName()); return; }