From 4e5e00d2be1d6c3462777d5c12f3ce8df4ef56a7 Mon Sep 17 00:00:00 2001 From: Evan Kranzler Date: Thu, 23 Apr 2020 17:33:39 -0400 Subject: [PATCH] fixed Seize the Soul --- Mage.Sets/src/mage/cards/s/SeizeTheSoul.java | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Mage.Sets/src/mage/cards/s/SeizeTheSoul.java b/Mage.Sets/src/mage/cards/s/SeizeTheSoul.java index 2e3c4cbdc7..bffe087601 100644 --- a/Mage.Sets/src/mage/cards/s/SeizeTheSoul.java +++ b/Mage.Sets/src/mage/cards/s/SeizeTheSoul.java @@ -11,7 +11,7 @@ import mage.constants.CardType; import mage.filter.common.FilterCreaturePermanent; import mage.filter.predicate.Predicates; import mage.filter.predicate.mageobject.ColorPredicate; -import mage.game.permanent.token.SpiritToken; +import mage.game.permanent.token.SpiritWhiteToken; import mage.target.common.TargetCreaturePermanent; import java.util.UUID; @@ -33,18 +33,18 @@ public final class SeizeTheSoul extends CardImpl { // Destroy target nonwhite, nonblack creature. Put a 1/1 white Spirit creature token with flying onto the battlefield. this.getSpellAbility().addEffect(new DestroyTargetEffect()); - this.getSpellAbility().addEffect(new CreateTokenEffect(new SpiritToken())); + this.getSpellAbility().addEffect(new CreateTokenEffect(new SpiritWhiteToken())); this.getSpellAbility().addTarget(new TargetCreaturePermanent(filter)); // Haunt // When the creature Seize the Soul haunts dies, destroy target nonwhite, nonblack creature. Put a 1/1 white Spirit creature token with flying onto the battlefield. Ability ability = new HauntAbility(this, new DestroyTargetEffect()); - ability.addEffect(new CreateTokenEffect(new SpiritToken())); - ability.addTarget(new TargetCreaturePermanent()); + ability.addEffect(new CreateTokenEffect(new SpiritWhiteToken())); + ability.addTarget(new TargetCreaturePermanent(filter)); this.addAbility(ability); } - public SeizeTheSoul(final SeizeTheSoul card) { + private SeizeTheSoul(final SeizeTheSoul card) { super(card); }