mirror of
https://github.com/correl/mage.git
synced 2025-03-16 09:16:26 -09: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()) {
|
if (controller.getLibrary().hasCards()) {
|
||||||
Card card = controller.getLibrary().getFromTop(game);
|
Card card = controller.getLibrary().getFromTop(game);
|
||||||
if (card != null) {
|
if (card != null) {
|
||||||
CardsImpl cards = new CardsImpl();
|
controller.lookAtCards(sourceObject.getIdName(), new CardsImpl(card), game);
|
||||||
cards.add(card);
|
|
||||||
controller.lookAtCards(sourceObject.getIdName(), cards, game);
|
|
||||||
if (controller.chooseUse(Outcome.Neutral, "Do you wish to put the card into your graveyard?", source, 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);
|
controller.moveCards(card, Zone.GRAVEYARD, source, game);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue