mirror of
https://github.com/magefree/mage.git
synced 2025-12-20 02:30:08 -08:00
Sword of Light and Shadow - removed duplicated choose use dialog (#11636)
This commit is contained in:
parent
15cecf5acb
commit
ef750e7a7e
1 changed files with 1 additions and 3 deletions
|
|
@ -82,8 +82,6 @@ class SwordOfLightAndShadowEffect extends OneShotEffect {
|
||||||
public boolean apply(Game game, Ability source) {
|
public boolean apply(Game game, Ability source) {
|
||||||
Player controller = game.getPlayer(source.getControllerId());
|
Player controller = game.getPlayer(source.getControllerId());
|
||||||
Card card = game.getCard(targetPointer.getFirst(game, source));
|
Card card = game.getCard(targetPointer.getFirst(game, source));
|
||||||
return controller != null && card != null && controller.chooseUse(
|
return controller != null && card != null && controller.moveCards(card, Zone.HAND, source, game);
|
||||||
outcome, "Return " + card.getName() + " from your graveyard to your hand?", source, game
|
|
||||||
) && controller.moveCards(card, Zone.HAND, source, game);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue