From 21b8c8a3541e5aa4137c8f84eca3fd353cc848d5 Mon Sep 17 00:00:00 2001 From: North Date: Sat, 21 Jul 2012 10:21:29 +0300 Subject: [PATCH] Removed Artifact type addition from CopyPermanentEffect --- .../src/mage/abilities/effects/common/CopyPermanentEffect.java | 3 --- 1 file changed, 3 deletions(-) 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; } });