From 36e46d63637607a9815c8ce0ebfabbe0e6b79584 Mon Sep 17 00:00:00 2001
From: Evan Kranzler <theelk801@gmail.com>
Date: Wed, 16 May 2018 09:04:34 -0400
Subject: [PATCH] fixed Azcanta, the Sunken Ruin not allowing players to fail
 to find

---
 Mage.Sets/src/mage/cards/a/AzcantaTheSunkenRuin.java | 9 +++++++--
 1 file changed, 7 insertions(+), 2 deletions(-)

diff --git a/Mage.Sets/src/mage/cards/a/AzcantaTheSunkenRuin.java b/Mage.Sets/src/mage/cards/a/AzcantaTheSunkenRuin.java
index 84ba6fbd28..07bf73bf34 100644
--- a/Mage.Sets/src/mage/cards/a/AzcantaTheSunkenRuin.java
+++ b/Mage.Sets/src/mage/cards/a/AzcantaTheSunkenRuin.java
@@ -71,8 +71,13 @@ public class AzcantaTheSunkenRuin extends CardImpl {
         this.addAbility(new BlueManaAbility());
 
         // {2}{U} , {T} : Look at the top four cards of your library. You may reveal a noncreature, nonland card from among them and put it into your hand. Put the rest on the bottom of your library in any order.
-        Ability ability = new SimpleActivatedAbility(Zone.BATTLEFIELD,
-                new LookLibraryAndPickControllerEffect(new StaticValue(4), false, new StaticValue(1), filter, false), new ManaCostsImpl<>("{2}{U}"));
+        Ability ability = new SimpleActivatedAbility(
+                Zone.BATTLEFIELD,
+                new LookLibraryAndPickControllerEffect(
+                        new StaticValue(4), false, new StaticValue(1),
+                        filter, Zone.LIBRARY, false, true, true
+                ), new ManaCostsImpl<>("{2}{U}")
+        );
         ability.addCost(new TapSourceCost());
         this.addAbility(ability);
     }