forked from External/mage
Megamorph abilities - fixed that face down creatures show megamorph instead morph status (#11957)
* Megamorph should appear as if it were Morph * review comment
This commit is contained in:
parent
67286aa1a0
commit
b9bfe2ba48
7 changed files with 16 additions and 30 deletions
|
|
@ -17,8 +17,7 @@ public enum SpellAbilityCastMode {
|
|||
FLASHBACK("Flashback"),
|
||||
BESTOW("Bestow"),
|
||||
PROTOTYPE("Prototype"),
|
||||
MORPH("Morph", false, true),
|
||||
MEGAMORPH("Megamorph", false, true),
|
||||
MORPH("Morph", false, true), // and megamorph
|
||||
DISGUISE("Disguise", false, true),
|
||||
TRANSFORMED("Transformed", true),
|
||||
DISTURB("Disturb", true),
|
||||
|
|
@ -75,7 +74,6 @@ public enum SpellAbilityCastMode {
|
|||
cardCopy = ((PrototypeAbility) spellAbility).prototypeCardSpell(cardCopy);
|
||||
break;
|
||||
case MORPH:
|
||||
case MEGAMORPH:
|
||||
case DISGUISE:
|
||||
if (cardCopy instanceof Spell) {
|
||||
//Spell doesn't support setName, so make a copy of the card (we're blowing it away anyway)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue