forked from External/mage
[ZNR] fixed Nissa of Shadowed Boughs allowing you to choose noncreature cards (#7046)
This commit is contained in:
parent
42d6faf646
commit
18f5031490
1 changed files with 2 additions and 3 deletions
|
|
@ -142,11 +142,10 @@ class NissaOfShadowedBoughsCreatureEffect extends OneShotEffect {
|
|||
null, "Hand", "Graveyard", source, game
|
||||
))) {
|
||||
target = new TargetCardInYourGraveyard(0, 1, filter, true);
|
||||
player.choose(outcome, player.getGraveyard(), target, game);
|
||||
} else {
|
||||
target = new TargetCardInHand(0, 1, filter);
|
||||
player.choose(outcome, player.getHand(), target, game);
|
||||
target = new TargetCardInHand(filter);
|
||||
}
|
||||
player.choose(outcome, target, source.getSourceId(), game);
|
||||
Card card = game.getCard(target.getFirstTarget());
|
||||
if (card == null) {
|
||||
return false;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue