From 2dc631d554b5c712cf0963e415cbbedc40371075 Mon Sep 17 00:00:00 2001 From: Achilles Date: Sun, 4 Feb 2018 19:27:07 -0600 Subject: [PATCH] - Fixed Ponder #4481 --- Mage.Sets/src/mage/cards/p/Ponder.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Mage.Sets/src/mage/cards/p/Ponder.java b/Mage.Sets/src/mage/cards/p/Ponder.java index ef34158deed..11b301c33f9 100644 --- a/Mage.Sets/src/mage/cards/p/Ponder.java +++ b/Mage.Sets/src/mage/cards/p/Ponder.java @@ -44,7 +44,7 @@ public class Ponder extends CardImpl { // Look at the top three cards of your library, then put them back in any order. You may shuffle your library. - this.getSpellAbility().addEffect(new LookLibraryControllerEffect(3, true)); + this.getSpellAbility().addEffect(new LookLibraryControllerEffect(3, true, true)); // Draw a card. this.getSpellAbility().addEffect(new DrawCardSourceControllerEffect(1)); }