From 5c0e7d6b2e4e0d99782db0592fd6e45d239c2d7f Mon Sep 17 00:00:00 2001 From: Evan Kranzler Date: Thu, 10 Sep 2020 17:09:00 -0400 Subject: [PATCH] fixed copy constructor for RemoveAllCountersSourceCost --- .../abilities/costs/common/RemoveAllCountersSourceCost.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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 0e3ed63f61..4e7c306a46 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