From bd5c3293d80d8bfe7e4be8a303bb9157586e73e2 Mon Sep 17 00:00:00 2001 From: Evan Kranzler Date: Mon, 21 Sep 2020 17:01:18 -0400 Subject: [PATCH] [ZNR] fixed missing target for Scale the Heights --- Mage.Sets/src/mage/cards/s/ScaleTheHeights.java | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Mage.Sets/src/mage/cards/s/ScaleTheHeights.java b/Mage.Sets/src/mage/cards/s/ScaleTheHeights.java index 580a430a23b..838736eedf5 100644 --- a/Mage.Sets/src/mage/cards/s/ScaleTheHeights.java +++ b/Mage.Sets/src/mage/cards/s/ScaleTheHeights.java @@ -9,6 +9,7 @@ import mage.cards.CardSetInfo; import mage.constants.CardType; import mage.constants.Duration; import mage.counters.CounterType; +import mage.target.common.TargetCreaturePermanent; import java.util.UUID; @@ -24,6 +25,7 @@ public final class ScaleTheHeights extends CardImpl { this.getSpellAbility().addEffect(new AddCountersTargetEffect(CounterType.P1P1.createInstance())); this.getSpellAbility().addEffect(new GainLifeEffect(2).setText("You gain 2 life.")); this.getSpellAbility().addEffect(new PlayAdditionalLandsControllerEffect(1, Duration.EndOfTurn)); + this.getSpellAbility().addTarget(new TargetCreaturePermanent(0, 1)); // Draw a card. this.getSpellAbility().addEffect(new DrawCardSourceControllerEffect(1));