diff --git a/Mage/src/mage/abilities/effects/common/LookLibraryControllerEffect.java b/Mage/src/mage/abilities/effects/common/LookLibraryControllerEffect.java index ab3f892ceb..a87e52b605 100644 --- a/Mage/src/mage/abilities/effects/common/LookLibraryControllerEffect.java +++ b/Mage/src/mage/abilities/effects/common/LookLibraryControllerEffect.java @@ -125,6 +125,8 @@ public class LookLibraryControllerEffect extends OneShotEffect { } // take cards from library and look at them + boolean topCardRevealed = player.isTopCardRevealed(); + player.setTopCardRevealed(false); Cards cards = new CardsImpl(Zone.PICK); int count = Math.min(player.getLibrary().size(), this.numberOfCards.calculate(game, source)); for (int i = 0; i < count; i++) { @@ -141,6 +143,8 @@ public class LookLibraryControllerEffect extends OneShotEffect { this.putCardsBack(source, player, cards, game); + player.setTopCardRevealed(topCardRevealed); + this.mayShuffle(player, game); return true;