From b814d8746bd82a00d2ee19f0f52bdfd563602e63 Mon Sep 17 00:00:00 2001 From: Evan Kranzler Date: Sun, 1 Aug 2021 21:27:19 -0400 Subject: [PATCH] [AFR] fixed Tiamat not revealing tutored cards (fixes #8087) --- Mage.Sets/src/mage/cards/t/Tiamat.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Mage.Sets/src/mage/cards/t/Tiamat.java b/Mage.Sets/src/mage/cards/t/Tiamat.java index 23750835a0d..64c69d107e3 100644 --- a/Mage.Sets/src/mage/cards/t/Tiamat.java +++ b/Mage.Sets/src/mage/cards/t/Tiamat.java @@ -44,7 +44,7 @@ public final class Tiamat extends CardImpl { // When Tiamat enters the battlefield, if you cast it, search your library for up to five Dragon cards named Tiama that each have different names, reveal them, put them into your hand, then shuffle. this.addAbility(new ConditionalInterveningIfTriggeredAbility(new EntersBattlefieldTriggeredAbility( - new SearchLibraryPutInHandEffect(new TiamatTarget())), + new SearchLibraryPutInHandEffect(new TiamatTarget(), true, true, )), CastFromEverywhereSourceCondition.instance, "When {this} enters the battlefield, " + "if you cast it, search your library for up to five Dragon cards not named Tiamat " + "that each have different names, reveal them, put them into your hand, then shuffle."