mirror of
https://github.com/correl/mage.git
synced 2024-12-26 19:16:54 +00:00
* Minor changes.
This commit is contained in:
parent
66533c490e
commit
d6a15a5b8b
1 changed files with 1 additions and 3 deletions
|
@ -102,9 +102,7 @@ class SearchForAzcantaLookLibraryEffect extends OneShotEffect {
|
|||
if (controller.getLibrary().hasCards()) {
|
||||
Card card = controller.getLibrary().getFromTop(game);
|
||||
if (card != null) {
|
||||
CardsImpl cards = new CardsImpl();
|
||||
cards.add(card);
|
||||
controller.lookAtCards(sourceObject.getIdName(), cards, game);
|
||||
controller.lookAtCards(sourceObject.getIdName(), new CardsImpl(card), game);
|
||||
if (controller.chooseUse(Outcome.Neutral, "Do you wish to put the card into your graveyard?", source, game)) {
|
||||
controller.moveCards(card, Zone.GRAVEYARD, source, game);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue