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:
ssk97 2024-03-17 16:58:02 -07:00 committed by GitHub
parent 67286aa1a0
commit b9bfe2ba48
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
7 changed files with 16 additions and 30 deletions

View file

@ -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)