Removed Artifact type addition from CopyPermanentEffect

This commit is contained in:
North 2012-07-21 10:21:29 +03:00
parent 1060ce4a10
commit 21b8c8a354

View file

@ -76,9 +76,6 @@ public class CopyPermanentEffect extends OneShotEffect<CopyPermanentEffect> {
game.copyPermanent(copyFromPermanent, sourcePermanent, source, new ApplyToPermanent() {
@Override
public Boolean apply(Game game, Permanent permanent) {
if (!permanent.getCardType().contains(Constants.CardType.ARTIFACT)) {
permanent.getCardType().add(Constants.CardType.ARTIFACT);
}
return true;
}
});