From 264f7b64f0f3692d34aa420b646ea850a97b16e8 Mon Sep 17 00:00:00 2001 From: xenohedron Date: Sun, 28 Jan 2024 23:55:07 -0500 Subject: [PATCH] small fix to Felonious Rage --- Mage.Sets/src/mage/cards/f/FeloniousRage.java | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/Mage.Sets/src/mage/cards/f/FeloniousRage.java b/Mage.Sets/src/mage/cards/f/FeloniousRage.java index b2912df2587..d57b3638ea9 100644 --- a/Mage.Sets/src/mage/cards/f/FeloniousRage.java +++ b/Mage.Sets/src/mage/cards/f/FeloniousRage.java @@ -10,7 +10,7 @@ import mage.cards.CardImpl; import mage.cards.CardSetInfo; import mage.constants.CardType; import mage.game.permanent.token.DetectiveToken; -import mage.target.common.TargetCreaturePermanent; +import mage.target.common.TargetControlledCreaturePermanent; import java.util.UUID; @@ -23,7 +23,8 @@ public final class FeloniousRage extends CardImpl { super(ownerId, setInfo, new CardType[]{CardType.INSTANT}, "{R}"); // Target creature you control gets +2/+0 and gains haste until end of turn. When that creature dies this turn, create a 2/2 white and blue Detective creature token. - this.getSpellAbility().addEffect(new BoostTargetEffect(2, 0)); + this.getSpellAbility().addEffect(new BoostTargetEffect(2, 0) + .setText("target creature you control gets +2/+0")); this.getSpellAbility().addEffect( new GainAbilityTargetEffect(HasteAbility.getInstance()) .setText("and gains haste until end of turn") @@ -31,7 +32,7 @@ public final class FeloniousRage extends CardImpl { this.getSpellAbility().addEffect(new CreateDelayedTriggeredAbilityEffect( new WhenTargetDiesDelayedTriggeredAbility(new CreateTokenEffect(new DetectiveToken())) )); - this.getSpellAbility().addTarget(new TargetCreaturePermanent()); + this.getSpellAbility().addTarget(new TargetControlledCreaturePermanent()); } private FeloniousRage(final FeloniousRage card) {