mirror of
https://github.com/correl/mage.git
synced 2024-12-25 03:00:15 +00:00
Goblin Machinist fix
Card didn't reveal the nonland card and put it on the bottom of library
This commit is contained in:
parent
77ab630001
commit
c24077a5fb
1 changed files with 2 additions and 2 deletions
|
@ -77,9 +77,9 @@ class GoblinMachinistEffect extends OneShotEffect {
|
|||
break;
|
||||
}
|
||||
}
|
||||
controller.revealCards(source, cards, game);
|
||||
controller.putCardsOnBottomOfLibrary(cards, game, source, true);
|
||||
}
|
||||
controller.revealCards(source, cards, game);
|
||||
controller.putCardsOnBottomOfLibrary(cards, game, source, true);
|
||||
return true;
|
||||
}
|
||||
return false;
|
||||
|
|
Loading…
Reference in a new issue