From d16657a937b42a1d41db5b8c9d1b8c27d5ce78aa Mon Sep 17 00:00:00 2001 From: LevelX2 Date: Thu, 6 Mar 2014 21:47:04 +0100 Subject: [PATCH] * Fire Whip - fixed wrong tap symbol. --- Mage.Sets/src/mage/sets/timeshifted/FireWhip.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Mage.Sets/src/mage/sets/timeshifted/FireWhip.java b/Mage.Sets/src/mage/sets/timeshifted/FireWhip.java index 9f43e2a8862..d0b3a0a5ad5 100644 --- a/Mage.Sets/src/mage/sets/timeshifted/FireWhip.java +++ b/Mage.Sets/src/mage/sets/timeshifted/FireWhip.java @@ -71,7 +71,7 @@ public class FireWhip extends CardImpl { // Enchanted creature has "{t}: This creature deals 1 damage to target creature or player." Ability ability1 = new SimpleActivatedAbility(Zone.BATTLEFIELD, new DamageTargetEffect(1), new TapSourceCost()); ability1.addTarget(new TargetCreatureOrPlayer()); - this.addAbility(new SimpleStaticAbility(Zone.BATTLEFIELD, new GainAbilityAttachedEffect(ability1, AttachmentType.AURA, Duration.WhileOnBattlefield, "Enchanted creature has \"{tap}: This creature deals 1 damage to target creature or player.\""))); + this.addAbility(new SimpleStaticAbility(Zone.BATTLEFIELD, new GainAbilityAttachedEffect(ability1, AttachmentType.AURA, Duration.WhileOnBattlefield, "Enchanted creature has \"{t}: This creature deals 1 damage to target creature or player.\""))); // Sacrifice Fire Whip: Fire Whip deals 1 damage to target creature or player. Ability ability2 = new SimpleActivatedAbility(Zone.BATTLEFIELD, new DamageTargetEffect(1), new SacrificeSourceCost()); ability2.addTarget(new TargetCreatureOrPlayer());