mirror of
https://github.com/correl/mage.git
synced 2024-12-26 03:00:11 +00:00
Moved copy copy statement from PermanentImpl to MageObjectImpl object.
This commit is contained in:
parent
68b2f589f0
commit
d5efeb3e95
2 changed files with 1 additions and 1 deletions
|
@ -86,6 +86,7 @@ public abstract class MageObjectImpl<T extends MageObjectImpl<T>> implements Mag
|
|||
this.cardType.addAll(object.cardType);
|
||||
this.subtype.addAll(object.subtype);
|
||||
this.supertype.addAll(object.supertype);
|
||||
this.copy = object.copy;
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
|
@ -131,7 +131,6 @@ public abstract class PermanentImpl<T extends PermanentImpl<T>> extends CardImpl
|
|||
this.maxBlockedBy = permanent.maxBlockedBy;
|
||||
this.transformed = permanent.transformed;
|
||||
this.pairedCard = permanent.pairedCard;
|
||||
this.copy = permanent.copy;
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
Loading…
Reference in a new issue