diff --git a/Mage.Sets/src/mage/sets/fatereforged/PressurePoint.java b/Mage.Sets/src/mage/sets/fatereforged/PressurePoint.java index e7ea5abb70..0722a866ac 100644 --- a/Mage.Sets/src/mage/sets/fatereforged/PressurePoint.java +++ b/Mage.Sets/src/mage/sets/fatereforged/PressurePoint.java @@ -33,6 +33,7 @@ import mage.abilities.effects.common.TapTargetEffect; import mage.cards.CardImpl; import mage.constants.CardType; import mage.constants.Rarity; +import mage.target.common.TargetCreaturePermanent; /** * @@ -46,6 +47,8 @@ public class PressurePoint extends CardImpl { // Tap target creature. this.getSpellAbility().addEffect(new TapTargetEffect()); + this.getSpellAbility().addTarget(new TargetCreaturePermanent()); + // Draw a card. this.getSpellAbility().addEffect(new DrawCardSourceControllerEffect(1)); }