Moved copy copy statement from PermanentImpl to MageObjectImpl object.

This commit is contained in:
LevelX2 2013-07-10 14:12:05 +02:00
parent 68b2f589f0
commit d5efeb3e95
2 changed files with 1 additions and 1 deletions

View file

@ -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

View file

@ -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