diff --git a/Mage/src/mage/cards/CardImpl.java b/Mage/src/mage/cards/CardImpl.java index 1a4de31e3e6..cdb710f0a91 100644 --- a/Mage/src/mage/cards/CardImpl.java +++ b/Mage/src/mage/cards/CardImpl.java @@ -44,8 +44,6 @@ import mage.watchers.Watchers; public abstract class CardImpl extends MageObjectImpl implements Card { - private static final transient Copier copier = new Copier(); - protected UUID ownerId; protected String art = ""; protected Watchers watchers = new Watchers(); @@ -115,7 +113,7 @@ public abstract class CardImpl extends MageObjectImpl implements Card { @Override public Card copy() { - return copier.copy(this); + return new Copier().copy(this); } @Override