mirror of
https://github.com/correl/mage.git
synced 2024-12-26 11:09:27 +00:00
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:
parent
8927955400
commit
6ef47c84df
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue