diff --git a/Mage.Sets/src/mage/cards/m/Misstep.java b/Mage.Sets/src/mage/cards/m/Misstep.java index e3897f86d26..4f1d123ddf0 100644 --- a/Mage.Sets/src/mage/cards/m/Misstep.java +++ b/Mage.Sets/src/mage/cards/m/Misstep.java @@ -19,7 +19,8 @@ public final class Misstep extends CardImpl { super(ownerId,setInfo,new CardType[]{CardType.SORCERY},"{1}{U}"); // Creatures target player controls don't untap during that player's next untap step. - this.getSpellAbility().addEffect(new DontUntapInPlayersNextUntapStepAllEffect(StaticFilters.FILTER_PERMANENT_CREATURES)); + this.getSpellAbility().addEffect(new DontUntapInPlayersNextUntapStepAllEffect(StaticFilters.FILTER_PERMANENT_CREATURES) + .setText("creatures target player controls don't untap during that player's next untap step")); this.getSpellAbility().addTarget(new TargetPlayer()); } @@ -31,4 +32,4 @@ public final class Misstep extends CardImpl { public Misstep copy() { return new Misstep(this); } -} \ No newline at end of file +} diff --git a/Mage/src/main/java/mage/abilities/effects/common/DontUntapInPlayersNextUntapStepAllEffect.java b/Mage/src/main/java/mage/abilities/effects/common/DontUntapInPlayersNextUntapStepAllEffect.java index 85a4afd6478..8dd2566db8a 100644 --- a/Mage/src/main/java/mage/abilities/effects/common/DontUntapInPlayersNextUntapStepAllEffect.java +++ b/Mage/src/main/java/mage/abilities/effects/common/DontUntapInPlayersNextUntapStepAllEffect.java @@ -20,7 +20,6 @@ import mage.players.Player; public class DontUntapInPlayersNextUntapStepAllEffect extends ContinuousRuleModifyingEffectImpl { private int validForTurnNum; - //private String targetName; FilterPermanent filter; /** @@ -114,6 +113,9 @@ public class DontUntapInPlayersNextUntapStepAllEffect extends ContinuousRuleModi if (!staticText.isEmpty()) { return staticText; } - return filter.getMessage() + " target opponent controls don't untap during their next untap step."; + return filter.getMessage() + + ' ' + + getTargetPointer().describeTargets(mode.getTargets(), "target opponent") + + " controls don't untap during their next untap step"; } }