Epitaph Golem puts card on top, rather than bottom

PutOnLibraryTargetEffect's parameter is "onTop", it should be false (for putting the cards on the bottom) rather than true (for putting the cards on top.)
This commit is contained in:
Eric Nelson 2020-07-20 20:57:53 -04:00 committed by GitHub
parent 7f3b24365e
commit e9960fa908
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. // {2}: Put target card from your graveyard on the bottom of your library.
Ability ability = new SimpleActivatedAbility( Ability ability = new SimpleActivatedAbility(
Zone.BATTLEFIELD, Zone.BATTLEFIELD,
new PutOnLibraryTargetEffect(true), new PutOnLibraryTargetEffect(false),
new ManaCostsImpl("{2}")); new ManaCostsImpl("{2}"));
ability.addTarget(new TargetCardInYourGraveyard()); ability.addTarget(new TargetCardInYourGraveyard());
this.addAbility(ability); this.addAbility(ability);