[OGW] Fixed Eldrazi Displacer.

This commit is contained in:
LevelX2 2016-01-10 08:56:06 +01:00
parent 78ccf3adb1
commit d63f6d7d27
2 changed files with 16 additions and 8 deletions

View file

@ -70,7 +70,7 @@ public class EldraziDisplacer extends CardImpl {
Effect effect = new ExileTargetForSourceEffect();
effect.setText("Exile another target creature");
Ability ability = new SimpleActivatedAbility(Zone.BATTLEFIELD, effect, new ManaCostsImpl<>("{2}{C}"));
effect = new ReturnToBattlefieldUnderOwnerControlTargetEffect();
effect = new ReturnToBattlefieldUnderOwnerControlTargetEffect(true);
effect.setText(", then return it to the battlefield tapped under its owner's control");
ability.addEffect(effect);
ability.addTarget(new TargetCreaturePermanent(filter));