mirror of
https://github.com/correl/mage.git
synced 2025-03-16 17:00:13 -09: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.cardType.addAll(object.cardType);
|
||||||
this.subtype.addAll(object.subtype);
|
this.subtype.addAll(object.subtype);
|
||||||
this.supertype.addAll(object.supertype);
|
this.supertype.addAll(object.supertype);
|
||||||
|
this.copy = object.copy;
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
|
|
@ -131,7 +131,6 @@ public abstract class PermanentImpl<T extends PermanentImpl<T>> extends CardImpl
|
||||||
this.maxBlockedBy = permanent.maxBlockedBy;
|
this.maxBlockedBy = permanent.maxBlockedBy;
|
||||||
this.transformed = permanent.transformed;
|
this.transformed = permanent.transformed;
|
||||||
this.pairedCard = permanent.pairedCard;
|
this.pairedCard = permanent.pairedCard;
|
||||||
this.copy = permanent.copy;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
|
Loading…
Add table
Reference in a new issue