From 4ce5519861437e454252e9d020cf1333b3b2ce49 Mon Sep 17 00:00:00 2001 From: LevelX2 Date: Tue, 16 Sep 2014 23:26:03 +0200 Subject: [PATCH] * Morph ability - Fixed that while a porphed creature not all other cardtypes (e.g. Artifact) or supertypes (e.g. Legendary) were removed. --- Mage/src/mage/abilities/keyword/MorphAbility.java | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Mage/src/mage/abilities/keyword/MorphAbility.java b/Mage/src/mage/abilities/keyword/MorphAbility.java index f277df9163..c922e9fba5 100644 --- a/Mage/src/mage/abilities/keyword/MorphAbility.java +++ b/Mage/src/mage/abilities/keyword/MorphAbility.java @@ -50,6 +50,7 @@ import mage.abilities.costs.mana.ManaCostsImpl; import mage.abilities.effects.ContinuousEffectImpl; import mage.abilities.effects.common.continious.SourceEffect; import mage.cards.Card; +import mage.constants.CardType; import mage.constants.Duration; import mage.constants.Layer; import mage.constants.Outcome; @@ -291,6 +292,9 @@ class BecomesFaceDownCreatureEffect extends ContinuousEffectImpl implements Sour switch (layer) { case TypeChangingEffects_4: permanent.setName(""); + permanent.getSupertype().clear(); + permanent.getCardType().clear(); + permanent.getCardType().add(CardType.CREATURE); permanent.getSubtype().clear(); permanent.getManaCost().clear(); break;