From 326764c94333332b4feedb8c77d4714b51e76a27 Mon Sep 17 00:00:00 2001 From: LevelX2 Date: Sun, 22 Jan 2017 22:50:34 +0100 Subject: [PATCH] * Aid from the Cowl - Added a message to the log if the player puts the card back to the top of the library. --- Mage.Sets/src/mage/cards/a/AidFromTheCowl.java | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Mage.Sets/src/mage/cards/a/AidFromTheCowl.java b/Mage.Sets/src/mage/cards/a/AidFromTheCowl.java index 81d8be69464..95e03ecdca5 100644 --- a/Mage.Sets/src/mage/cards/a/AidFromTheCowl.java +++ b/Mage.Sets/src/mage/cards/a/AidFromTheCowl.java @@ -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."); } } }