From 1d9cebfc5c8a49e21b60042c17ffef3cb1406976 Mon Sep 17 00:00:00 2001 From: LevelX2 Date: Sun, 20 Sep 2015 09:27:41 +0200 Subject: [PATCH] * From Beyond - Fixed that the searched cards was not revealed. --- Mage.Sets/src/mage/sets/battleforzendikar/FromBeyond.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Mage.Sets/src/mage/sets/battleforzendikar/FromBeyond.java b/Mage.Sets/src/mage/sets/battleforzendikar/FromBeyond.java index f01242399c..048f5b9264 100644 --- a/Mage.Sets/src/mage/sets/battleforzendikar/FromBeyond.java +++ b/Mage.Sets/src/mage/sets/battleforzendikar/FromBeyond.java @@ -70,7 +70,7 @@ public class FromBeyond extends CardImpl { // {1}{G}, Sacrifice From Beyond: Search your library for an Eldrazi card, reveal it, put it into your hand, then shuffle your library. Ability ability = new SimpleActivatedAbility(Zone.BATTLEFIELD, - new SearchLibraryPutInHandEffect(new TargetCardInLibrary(filter)), + new SearchLibraryPutInHandEffect(new TargetCardInLibrary(filter), true, true), new ManaCostsImpl("{1}{G}")); ability.addCost(new SacrificeSourceCost()); this.addAbility(ability);