Updated to fix zone issies

Had it set to send top-card artifact to library, effectively doing nothing. Switched it to correctly send top-card artifact to hand.
This commit is contained in:
Russell Waldrop 2016-01-13 00:04:27 -05:00
parent 8927955400
commit 6ef47c84df

View file

@ -108,7 +108,7 @@ class NeurokFamiliarEffect extends OneShotEffect {
Cards cards = new CardsImpl(card); Cards cards = new CardsImpl(card);
controller.revealCards(sourceObject.getIdName(), cards, game); controller.revealCards(sourceObject.getIdName(), cards, game);
if (card.getCardType().contains(CardType.ARTIFACT)) { if (card.getCardType().contains(CardType.ARTIFACT)) {
controller.moveCards(card, Zone.LIBRARY, source, game); controller.moveCards(card, Zone.HAND, source, game);
} else { } else {
controller.moveCards(card, Zone.GRAVEYARD, source, game); controller.moveCards(card, Zone.GRAVEYARD, source, game);
} }