From 5a9b73e4e619ce22b00fc43f1626878776d475ab Mon Sep 17 00:00:00 2001 From: Evan Kranzler Date: Sat, 25 Apr 2020 20:12:51 -0400 Subject: [PATCH] another fix for Monstrous Step --- Mage.Sets/src/mage/cards/m/MonstrousStep.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Mage.Sets/src/mage/cards/m/MonstrousStep.java b/Mage.Sets/src/mage/cards/m/MonstrousStep.java index 11501eab21..3f24695155 100644 --- a/Mage.Sets/src/mage/cards/m/MonstrousStep.java +++ b/Mage.Sets/src/mage/cards/m/MonstrousStep.java @@ -15,7 +15,7 @@ import mage.filter.predicate.mageobject.AnotherTargetPredicate; import mage.game.Game; import mage.game.permanent.Permanent; import mage.target.TargetPermanent; -import mage.target.common.TargetControlledCreaturePermanent; +import mage.target.common.TargetCreaturePermanent; import mage.watchers.common.BlockedAttackerWatcher; import java.util.UUID; @@ -40,7 +40,7 @@ public final class MonstrousStep extends CardImpl { this.getSpellAbility().addEffect(new MonstrousStepEffect()); this.getSpellAbility().addWatcher(new BlockedAttackerWatcher()); - TargetPermanent target = new TargetControlledCreaturePermanent(); + TargetPermanent target = new TargetCreaturePermanent(); target.setTargetTag(1); this.getSpellAbility().addTarget(target); target = new TargetPermanent(0, 1, filter, false);