diff --git a/Mage.Sets/src/mage/cards/b/BeaconBolt.java b/Mage.Sets/src/mage/cards/b/BeaconBolt.java index 39ec31e518e..fe0ca03e892 100644 --- a/Mage.Sets/src/mage/cards/b/BeaconBolt.java +++ b/Mage.Sets/src/mage/cards/b/BeaconBolt.java @@ -7,6 +7,7 @@ import mage.abilities.keyword.JumpStartAbility; import mage.cards.CardImpl; import mage.cards.CardSetInfo; import mage.constants.CardType; +import mage.target.common.TargetCreaturePermanent; /** * @@ -23,6 +24,7 @@ public final class BeaconBolt extends CardImpl { ).setText("{this} deals damage to target creature equal to " + "the total number of instant and sorcery cards " + "you own in exile and in your graveyard")); + this.getSpellAbility().addTarget(new TargetCreaturePermanent()); // Jump-start this.addAbility(new JumpStartAbility(this));