mirror of
https://github.com/correl/mage.git
synced 2024-12-26 03:00:11 +00:00
* Soulherder - fixed that it can target yourself instead another;
This commit is contained in:
parent
1be96e94d3
commit
2611f9acca
1 changed files with 2 additions and 2 deletions
|
@ -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);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue