Goblin Machinist fix

Card didn't reveal the nonland card and put it on the bottom of library
This commit is contained in:
L_J 2018-11-26 12:47:41 +00:00 committed by GitHub
parent 77ab630001
commit c24077a5fb
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -77,9 +77,9 @@ class GoblinMachinistEffect extends OneShotEffect {
break; 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 true;
} }
return false; return false;