mirror of
https://github.com/correl/mage.git
synced 2024-11-14 11:09:31 +00:00
- Fixed #6203 (Related to Magus of the Moon)
This commit is contained in:
parent
91e892588b
commit
897dcb3343
1 changed files with 2 additions and 3 deletions
|
@ -79,8 +79,7 @@ public final class MagusOfTheMoon extends CardImpl {
|
|||
land.removeAllAbilities(source.getSourceId(), game);
|
||||
land.getSubtype(game).removeAll(SubType.getLandTypes());
|
||||
land.getSubtype(game).add(SubType.MOUNTAIN);
|
||||
break;
|
||||
case AbilityAddingRemovingEffects_6:
|
||||
// Mountains have the red mana ability intrinsically so the ability must be added in this layer
|
||||
land.addAbility(new RedManaAbility(), source.getSourceId(), game);
|
||||
break;
|
||||
}
|
||||
|
@ -90,7 +89,7 @@ public final class MagusOfTheMoon extends CardImpl {
|
|||
|
||||
@Override
|
||||
public boolean hasLayer(Layer layer) {
|
||||
return layer == Layer.AbilityAddingRemovingEffects_6 || layer == Layer.TypeChangingEffects_4;
|
||||
return layer == Layer.TypeChangingEffects_4;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue