fixed Ephemerate returning creatures to the battlefield tapped

This commit is contained in:
Evan Kranzler 2019-06-08 13:06:51 -04:00
parent ec6243c4c0
commit 65575a1d52

View file

@ -21,7 +21,7 @@ public final class Ephemerate extends CardImpl {
// Exile target creature you control, then return it to the battlefield under its owner's control.
this.getSpellAbility().addTarget(new TargetControlledCreaturePermanent());
this.getSpellAbility().addEffect(new ExileTargetForSourceEffect());
this.getSpellAbility().addEffect(new ReturnToBattlefieldUnderOwnerControlTargetEffect(true));
this.getSpellAbility().addEffect(new ReturnToBattlefieldUnderOwnerControlTargetEffect());
// Rebound
this.addAbility(new ReboundAbility());