From 44c96b16b236634cbd8882dd650f1760af76e7dd Mon Sep 17 00:00:00 2001 From: Jeff Date: Wed, 14 Jan 2015 11:42:20 -0600 Subject: [PATCH] - Text fix on Friendly Fire. --- Mage.Sets/src/mage/sets/fatereforged/FriendlyFire.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Mage.Sets/src/mage/sets/fatereforged/FriendlyFire.java b/Mage.Sets/src/mage/sets/fatereforged/FriendlyFire.java index b3f4d9522c3..712d46860d9 100644 --- a/Mage.Sets/src/mage/sets/fatereforged/FriendlyFire.java +++ b/Mage.Sets/src/mage/sets/fatereforged/FriendlyFire.java @@ -53,7 +53,7 @@ public class FriendlyFire extends CardImpl { super(ownerId, 101, "Friendly Fire", Rarity.UNCOMMON, new CardType[]{CardType.INSTANT}, "{3}{R}"); this.expansionSetCode = "FRF"; - // Target creature's controller reveals a card at random from his or her hand. Friendly fire deals damage to that creature and that player equal to the revealed card's converted mana cost. + // Target creature's controller reveals a card at random from his or her hand. Friendly Fire deals damage to that creature and that player equal to the revealed card's converted mana cost. this.getSpellAbility().addEffect(new FriendlyFireEffect()); this.getSpellAbility().addTarget(new TargetCreaturePermanent()); @@ -73,7 +73,7 @@ class FriendlyFireEffect extends OneShotEffect { public FriendlyFireEffect() { super(Outcome.Discard); - this.staticText = "Target creature's controller reveals a card at random from his or her hand. Friendly fire deals damage to that creature and that player equal to the revealed card's converted mana cost"; + this.staticText = "Target creature's controller reveals a card at random from his or her hand. {this} deals damage to that creature and that player equal to the revealed card's converted mana cost"; } public FriendlyFireEffect(final FriendlyFireEffect effect) {