From 560980c6ce882dae8a52a5ae5852df34da383633 Mon Sep 17 00:00:00 2001 From: LevelX2 Date: Sun, 23 Sep 2018 10:57:06 +0200 Subject: [PATCH] * Beacon Bolt - Added missing target definition. --- Mage.Sets/src/mage/cards/b/BeaconBolt.java | 2 ++ 1 file changed, 2 insertions(+) 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));