1
0
Fork 0
mirror of https://github.com/correl/mage.git synced 2025-04-02 11:25:59 -09:00

[C21] fixed Yedora, Grave Gardener throwing exception (fixes )

This commit is contained in:
Evan Kranzler 2021-05-11 08:17:09 -04:00
parent 146f877047
commit aed946d0bb

View file

@ -123,7 +123,7 @@ class YedoraGraveGardenerContinuousEffect extends ContinuousEffectImpl {
target.addCardType(CardType.LAND); target.addCardType(CardType.LAND);
target.addSubType(game, SubType.FOREST); target.addSubType(game, SubType.FOREST);
target.removeAllAbilities(source.getSourceId(), game); target.removeAllAbilities(source.getSourceId(), game);
target.addAbility(new GreenManaAbility()); target.addAbility(new GreenManaAbility(), source.getSourceId(), game);
return true; return true;
} }
} }