mirror of
https://github.com/correl/mage.git
synced 2024-12-25 11:11:16 +00:00
fixed Narset of the Ancient Way not triggering off of discarding creature cards
This commit is contained in:
parent
599c5cf742
commit
cf6656a403
1 changed files with 1 additions and 1 deletions
|
@ -138,7 +138,7 @@ class NarsetOfTheAncientWayDrawEffect extends OneShotEffect {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
Card card = player.discardOne(false, source, game);
|
Card card = player.discardOne(false, source, game);
|
||||||
if (card == null || card.isCreature()) {
|
if (card == null || card.isLand()) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
game.addDelayedTriggeredAbility(new NarsetOfTheAncientWayReflexiveTriggeredAbility(card.getConvertedManaCost()), source);
|
game.addDelayedTriggeredAbility(new NarsetOfTheAncientWayReflexiveTriggeredAbility(card.getConvertedManaCost()), source);
|
||||||
|
|
Loading…
Reference in a new issue