* Soulherder - fixed that it can target yourself instead another;

This commit is contained in:
Oleg Agafonov 2019-07-06 11:34:10 +04:00
parent 1be96e94d3
commit 2611f9acca

View file

@ -30,7 +30,7 @@ import java.util.UUID;
*/ */
public final class Soulherder extends CardImpl { public final class Soulherder extends CardImpl {
private static final FilterPermanent filter private static final FilterControlledCreaturePermanent filter
= new FilterControlledCreaturePermanent("another target creature you control"); = new FilterControlledCreaturePermanent("another target creature you control");
static { static {
@ -52,7 +52,7 @@ public final class Soulherder extends CardImpl {
new ExileTargetForSourceEffect(), TargetController.YOU, true new ExileTargetForSourceEffect(), TargetController.YOU, true
); );
ability.addEffect(new ReturnToBattlefieldUnderOwnerControlTargetEffect().concatBy("then")); ability.addEffect(new ReturnToBattlefieldUnderOwnerControlTargetEffect().concatBy("then"));
ability.addTarget(new TargetControlledCreaturePermanent()); ability.addTarget(new TargetControlledCreaturePermanent(filter));
this.addAbility(ability); this.addAbility(ability);
} }