From ddd6333d70fc79d8c5fd9c82899a3d0b97b4d8be Mon Sep 17 00:00:00 2001 From: Grath <1895280+Grath@users.noreply.github.com> Date: Thu, 29 Jun 2023 23:49:41 -0400 Subject: [PATCH] Fix Bombadil's Song to only allow your creatures to be targeted. --- Mage.Sets/src/mage/cards/b/BombadilsSong.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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) {