From b463bc756fd86c03f66b29566501ba0e8f1152ce Mon Sep 17 00:00:00 2001 From: LevelX2 Date: Tue, 28 May 2013 07:42:14 +0200 Subject: [PATCH] Added reminder text to Equip ability. --- Mage/src/mage/abilities/keyword/EquipAbility.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Mage/src/mage/abilities/keyword/EquipAbility.java b/Mage/src/mage/abilities/keyword/EquipAbility.java index 4c11a76b0d..4bcaf8570c 100644 --- a/Mage/src/mage/abilities/keyword/EquipAbility.java +++ b/Mage/src/mage/abilities/keyword/EquipAbility.java @@ -64,7 +64,7 @@ public class EquipAbility extends ActivatedAbilityImpl { @Override public String getRule() { - return "Equip " + costs.getText() + manaCosts.getText(); + return new StringBuilder("Equip ").append(costs.getText()).append(manaCosts.getText()).append(" (").append(manaCosts.getText()).append(": Attach to target creature you control. Equip only as a sorcery.)").toString(); } }