1
0
Fork 0
mirror of https://github.com/correl/mage.git synced 2025-03-30 09:08:36 -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.addSubType(game, SubType.FOREST);
target.removeAllAbilities(source.getSourceId(), game);
target.addAbility(new GreenManaAbility());
target.addAbility(new GreenManaAbility(), source.getSourceId(), game);
return true;
}
}