diff --git a/Mage.Sets/src/mage/cards/b/BigPlay.java b/Mage.Sets/src/mage/cards/b/BigPlay.java index eb1ba98f229..698165d20c2 100644 --- a/Mage.Sets/src/mage/cards/b/BigPlay.java +++ b/Mage.Sets/src/mage/cards/b/BigPlay.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; @@ -30,6 +31,7 @@ public final class BigPlay extends CardImpl { this.getSpellAbility().addEffect(new AddCountersTargetEffect( CounterType.P1P1.createInstance() ).setText("Put a +1/+1 counter on it")); + this.getSpellAbility().addTarget(new TargetCreaturePermanent()); } private BigPlay(final BigPlay card) {