From c7140d1ace9d0b660f2be2b65a1edc44f7beda9e Mon Sep 17 00:00:00 2001 From: Evan Kranzler Date: Wed, 29 Apr 2020 21:13:33 -0400 Subject: [PATCH] fixed Impetus texts --- .../main/java/mage/abilities/common/GoadAttachedAbility.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Mage/src/main/java/mage/abilities/common/GoadAttachedAbility.java b/Mage/src/main/java/mage/abilities/common/GoadAttachedAbility.java index ebe0fdd5015..ec1ad4641dc 100644 --- a/Mage/src/main/java/mage/abilities/common/GoadAttachedAbility.java +++ b/Mage/src/main/java/mage/abilities/common/GoadAttachedAbility.java @@ -25,7 +25,7 @@ public class GoadAttachedAbility extends StaticAbility { } this.addEffect(new AttacksIfAbleAttachedEffect( Duration.WhileOnBattlefield, AttachmentType.AURA - ).setText(", and is")); + ).setText(", and is goaded.")); this.addEffect(new GoadAttackEffect()); } @@ -43,7 +43,7 @@ class GoadAttackEffect extends RestrictionEffect { GoadAttackEffect() { super(Duration.WhileOnBattlefield); - staticText = "goaded. (It attacks each combat if able and attacks a player other than you if able.)"; + staticText = "(It attacks each combat if able and attacks a player other than you if able.)"; } private GoadAttackEffect(final GoadAttackEffect effect) {