* From Beyond - Fixed that the searched cards was not revealed.

This commit is contained in:
LevelX2 2015-09-20 09:27:41 +02:00
parent 5a8ca36916
commit 1d9cebfc5c

View file

@ -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. // {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, Ability ability = new SimpleActivatedAbility(Zone.BATTLEFIELD,
new SearchLibraryPutInHandEffect(new TargetCardInLibrary(filter)), new SearchLibraryPutInHandEffect(new TargetCardInLibrary(filter), true, true),
new ManaCostsImpl("{1}{G}")); new ManaCostsImpl("{1}{G}"));
ability.addCost(new SacrificeSourceCost()); ability.addCost(new SacrificeSourceCost());
this.addAbility(ability); this.addAbility(ability);