Merge pull request #6868 from Grath/patch-3

Epitaph Golem puts card on top, rather than bottom
This commit is contained in:
LevelX2 2020-07-21 07:15:12 +02:00 committed by GitHub
commit 61c42f4d5b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -33,7 +33,7 @@ public final class EpitaphGolem extends CardImpl {
// {2}: Put target card from your graveyard on the bottom of your library.
Ability ability = new SimpleActivatedAbility(
Zone.BATTLEFIELD,
new PutOnLibraryTargetEffect(true),
new PutOnLibraryTargetEffect(false),
new ManaCostsImpl("{2}"));
ability.addTarget(new TargetCardInYourGraveyard());
this.addAbility(ability);