Sword of Light and Shadow - removed duplicated choose use dialog (#11636)

This commit is contained in:
Ebola16 2024-01-12 01:27:14 -05:00 committed by GitHub
parent 15cecf5acb
commit ef750e7a7e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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);
} }
} }