- Fixed #6203 (Related to Magus of the Moon)

This commit is contained in:
jeffwadsworth 2020-01-20 15:38:52 -06:00
parent 91e892588b
commit 897dcb3343

View file

@ -79,8 +79,7 @@ public final class MagusOfTheMoon extends CardImpl {
land.removeAllAbilities(source.getSourceId(), game); land.removeAllAbilities(source.getSourceId(), game);
land.getSubtype(game).removeAll(SubType.getLandTypes()); land.getSubtype(game).removeAll(SubType.getLandTypes());
land.getSubtype(game).add(SubType.MOUNTAIN); land.getSubtype(game).add(SubType.MOUNTAIN);
break; // Mountains have the red mana ability intrinsically so the ability must be added in this layer
case AbilityAddingRemovingEffects_6:
land.addAbility(new RedManaAbility(), source.getSourceId(), game); land.addAbility(new RedManaAbility(), source.getSourceId(), game);
break; break;
} }
@ -90,7 +89,7 @@ public final class MagusOfTheMoon extends CardImpl {
@Override @Override
public boolean hasLayer(Layer layer) { public boolean hasLayer(Layer layer) {
return layer == Layer.AbilityAddingRemovingEffects_6 || layer == Layer.TypeChangingEffects_4; return layer == Layer.TypeChangingEffects_4;
} }
} }