From 976936b55da11f966e9b9c08250fb791c1ac6fb9 Mon Sep 17 00:00:00 2001 From: LevelX2 Date: Sun, 23 Oct 2016 00:38:14 +0200 Subject: [PATCH] * Phyrexian Metamorph - Fixed that the enteres battlefield effect was not optional. --- Mage.Sets/src/mage/cards/p/PhyrexianMetamorph.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Mage.Sets/src/mage/cards/p/PhyrexianMetamorph.java b/Mage.Sets/src/mage/cards/p/PhyrexianMetamorph.java index 815f7984333..c452c102354 100644 --- a/Mage.Sets/src/mage/cards/p/PhyrexianMetamorph.java +++ b/Mage.Sets/src/mage/cards/p/PhyrexianMetamorph.java @@ -61,7 +61,7 @@ public class PhyrexianMetamorph extends CardImpl { } public PhyrexianMetamorph(UUID ownerId, CardSetInfo setInfo) { - super(ownerId,setInfo,new CardType[]{CardType.ARTIFACT,CardType.CREATURE},"{3}{UP}"); + super(ownerId, setInfo, new CardType[]{CardType.ARTIFACT, CardType.CREATURE}, "{3}{UP}"); this.subtype.add("Shapeshifter"); this.power = new MageInt(0); @@ -87,7 +87,7 @@ public class PhyrexianMetamorph extends CardImpl { // You may have Phyrexian Metamorph enter the battlefield as a copy of any artifact or creature on the battlefield, except it's an artifact in addition to its other types. Effect effect = new CopyPermanentEffect(filter, phyrexianMetamorphApplier); effect.setText("You may have {this} enter the battlefield as a copy of any artifact or creature on the battlefield, except it's an artifact in addition to its other types"); - Ability ability = new SimpleStaticAbility(Zone.ALL, new EntersBattlefieldEffect(effect)); + Ability ability = new SimpleStaticAbility(Zone.ALL, new EntersBattlefieldEffect(effect, "", true)); this.addAbility(ability); }