Fix Bombadil's Song to only allow your creatures to be targeted.

This commit is contained in:
Grath 2023-06-29 23:49:41 -04:00 committed by GitHub
parent f2378a5b3d
commit ddd6333d70
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

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