From a8631c6ff35eeea921cc89bb8c076a7c38b78258 Mon Sep 17 00:00:00 2001 From: fireshoes Date: Sun, 16 Apr 2017 15:43:49 -0500 Subject: [PATCH] Remove comma change from BecomesCreatureSourceEffect staticText. --- .../common/continuous/BecomesCreatureSourceEffect.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Mage/src/main/java/mage/abilities/effects/common/continuous/BecomesCreatureSourceEffect.java b/Mage/src/main/java/mage/abilities/effects/common/continuous/BecomesCreatureSourceEffect.java index 8fbee7a28ce..b4a562073d8 100644 --- a/Mage/src/main/java/mage/abilities/effects/common/continuous/BecomesCreatureSourceEffect.java +++ b/Mage/src/main/java/mage/abilities/effects/common/continuous/BecomesCreatureSourceEffect.java @@ -167,9 +167,9 @@ public class BecomesCreatureSourceEffect extends ContinuousEffectImpl implements private void setText() { if (type != null && !type.isEmpty()) { - staticText = duration.toString() + ", {this} becomes a " + token.getDescription() + " that's still a " + this.type; + staticText = duration.toString() + " {this} becomes a " + token.getDescription() + " that's still a " + this.type; } else { - staticText = duration.toString() + ", {this} becomes a " + token.getDescription(); + staticText = duration.toString() + " {this} becomes a " + token.getDescription(); } }