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) {