diff --git a/Mage/src/main/java/mage/abilities/costs/common/RemoveAllCountersSourceCost.java b/Mage/src/main/java/mage/abilities/costs/common/RemoveAllCountersSourceCost.java index 0e3ed63f617..4e7c306a46a 100644 --- a/Mage/src/main/java/mage/abilities/costs/common/RemoveAllCountersSourceCost.java +++ b/Mage/src/main/java/mage/abilities/costs/common/RemoveAllCountersSourceCost.java @@ -22,9 +22,10 @@ public class RemoveAllCountersSourceCost extends CostImpl { this.text = "Remove all " + counterType.getName() + " counters from {this}"; } - public RemoveAllCountersSourceCost(RemoveAllCountersSourceCost cost) { + private RemoveAllCountersSourceCost(final RemoveAllCountersSourceCost cost) { super(cost); this.counterType = cost.counterType; + this.removedCounters = cost.removedCounters; } @Override