mirror of
https://github.com/magefree/mage.git
synced 2025-12-22 03:22:00 -08: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…
Add table
Add a link
Reference in a new issue