diff --git a/Mage/src/mage/abilities/effects/common/CopyPermanentEffect.java b/Mage/src/mage/abilities/effects/common/CopyPermanentEffect.java index 0cf24538edf..9fe43b6de36 100644 --- a/Mage/src/mage/abilities/effects/common/CopyPermanentEffect.java +++ b/Mage/src/mage/abilities/effects/common/CopyPermanentEffect.java @@ -76,9 +76,6 @@ public class CopyPermanentEffect extends OneShotEffect { 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; } });