fix Altar of Bone

the searched card should be revealed
This commit is contained in:
Neil Gentleman 2015-11-23 23:16:54 -08:00
parent 43e33bb27f
commit e3d7c08311

View file

@ -51,7 +51,7 @@ public class AltarOfBone extends CardImpl {
// As an additional cost to cast Altar of Bone, sacrifice a creature.
this.getSpellAbility().addCost(new SacrificeTargetCost(new TargetControlledCreaturePermanent()));
// Search your library for a creature card, reveal that card, and put it into your hand. Then shuffle your library.
this.getSpellAbility().addEffect(new SearchLibraryPutInHandEffect(new TargetCardInLibrary(new FilterCreatureCard())));
this.getSpellAbility().addEffect(new SearchLibraryPutInHandEffect(new TargetCardInLibrary(new FilterCreatureCard()), true));
}
public AltarOfBone(final AltarOfBone card) {