mirror of
https://github.com/correl/mage.git
synced 2024-12-25 11:11:16 +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 {
|
||||
|
||||
private static final FilterPermanent filter
|
||||
private static final FilterControlledCreaturePermanent filter
|
||||
= new FilterControlledCreaturePermanent("another target creature you control");
|
||||
|
||||
static {
|
||||
|
@ -52,7 +52,7 @@ public final class Soulherder extends CardImpl {
|
|||
new ExileTargetForSourceEffect(), TargetController.YOU, true
|
||||
);
|
||||
ability.addEffect(new ReturnToBattlefieldUnderOwnerControlTargetEffect().concatBy("then"));
|
||||
ability.addTarget(new TargetControlledCreaturePermanent());
|
||||
ability.addTarget(new TargetControlledCreaturePermanent(filter));
|
||||
this.addAbility(ability);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue