mirror of
https://github.com/correl/mage.git
synced 2024-12-25 03:00:15 +00:00
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:
parent
7f3b24365e
commit
e9960fa908
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||||
|
|
Loading…
Reference in a new issue