mirror of
https://github.com/correl/mage.git
synced 2025-01-13 03:00:10 +00:00
Remove deprecated method calls from card Murmurs from Beyond
This commit is contained in:
parent
2ded3f9cac
commit
d25ed112bb
1 changed files with 4 additions and 4 deletions
|
@ -113,12 +113,12 @@ class MurmursFromBeyondEffect extends OneShotEffect {
|
|||
TargetCard target = new TargetCard(1, Zone.LIBRARY, new FilterCard());
|
||||
opponent.chooseTarget(outcome, cards, target, source, game);
|
||||
cardToGraveyard = game.getCard(target.getFirstTarget());
|
||||
}
|
||||
if (cardToGraveyard != null) {
|
||||
controller.moveCards(cardToGraveyard,Zone.LIBRARY, Zone.GRAVEYARD, source, game);
|
||||
}
|
||||
if (cardToGraveyard != null) {
|
||||
controller.moveCards(cardToGraveyard, Zone.GRAVEYARD, source, game);
|
||||
cards.remove(cardToGraveyard);
|
||||
}
|
||||
controller.moveCards(cards, Zone.LIBRARY, Zone.HAND, source, game);
|
||||
controller.moveCards(cards, Zone.HAND, source, game);
|
||||
}
|
||||
return true;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue