diff --git a/Mage.Sets/src/mage/cards/b/BombadilsSong.java b/Mage.Sets/src/mage/cards/b/BombadilsSong.java index b6b07787be6..42add8ba1d8 100644 --- a/Mage.Sets/src/mage/cards/b/BombadilsSong.java +++ b/Mage.Sets/src/mage/cards/b/BombadilsSong.java @@ -7,7 +7,7 @@ import mage.abilities.keyword.HexproofAbility; import mage.cards.CardImpl; import mage.cards.CardSetInfo; import mage.constants.CardType; -import mage.target.common.TargetCreaturePermanent; +import mage.target.common.TargetControlledCreaturePermanent; import java.util.UUID; @@ -25,7 +25,7 @@ public final class BombadilsSong extends CardImpl { this.getSpellAbility().addEffect(new GainAbilityTargetEffect(HexproofAbility.getInstance()) .setText("and gains hexproof until the end of turn")); this.getSpellAbility().addEffect(new TheRingTemptsYouEffect()); - this.getSpellAbility().addTarget(new TargetCreaturePermanent()); + this.getSpellAbility().addTarget(new TargetControlledCreaturePermanent()); } private BombadilsSong(final BombadilsSong card) {