* Aid from the Cowl - Added a message to the log if the player puts the card back to the top of the library.

This commit is contained in:
LevelX2 2017-01-22 22:50:34 +01:00
parent 0014c7dcc5
commit 326764c943

View file

@ -110,6 +110,8 @@ class AidFromTheCowlEffect extends OneShotEffect {
controller.moveCards(card, Zone.BATTLEFIELD, source, game);
} else if (controller.chooseUse(Outcome.Neutral, "Put " + card.getIdName() + " on the bottom of your library?", source, game)) {
controller.putCardsOnBottomOfLibrary(cards, game, source, false);
} else {
game.informPlayers(controller.getLogName() + " puts the revealed card back to the top of the library.");
}
}
}