From e9960fa908c07adcd69aee5001104a257bd96341 Mon Sep 17 00:00:00 2001 From: Eric Nelson <1895280+Grath@users.noreply.github.com> Date: Mon, 20 Jul 2020 20:57:53 -0400 Subject: [PATCH] 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.) --- Mage.Sets/src/mage/cards/e/EpitaphGolem.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Mage.Sets/src/mage/cards/e/EpitaphGolem.java b/Mage.Sets/src/mage/cards/e/EpitaphGolem.java index 19b60d1e56..5d747a640c 100644 --- a/Mage.Sets/src/mage/cards/e/EpitaphGolem.java +++ b/Mage.Sets/src/mage/cards/e/EpitaphGolem.java @@ -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);