mirror of
https://github.com/magefree/mage.git
synced 2025-12-20 02:30:08 -08:00
changed Copier
This commit is contained in:
parent
f67ed0211d
commit
422c5d59a5
1 changed files with 1 additions and 3 deletions
|
|
@ -44,8 +44,6 @@ import mage.watchers.Watchers;
|
|||
|
||||
public abstract class CardImpl extends MageObjectImpl implements Card {
|
||||
|
||||
private static final transient Copier<Card> copier = new Copier<Card>();
|
||||
|
||||
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<Card>().copy(this);
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue