fixed Narset of the Ancient Way not triggering off of discarding creature cards

This commit is contained in:
Evan Kranzler 2020-04-21 22:08:19 -04:00
parent 599c5cf742
commit cf6656a403

View file

@ -138,7 +138,7 @@ class NarsetOfTheAncientWayDrawEffect extends OneShotEffect {
return false;
}
Card card = player.discardOne(false, source, game);
if (card == null || card.isCreature()) {
if (card == null || card.isLand()) {
return false;
}
game.addDelayedTriggeredAbility(new NarsetOfTheAncientWayReflexiveTriggeredAbility(card.getConvertedManaCost()), source);