Remove comma change from BecomesCreatureSourceEffect staticText.

This commit is contained in:
fireshoes 2017-04-16 15:43:49 -05:00
parent bf556c1a77
commit a8631c6ff3

View file

@ -167,9 +167,9 @@ public class BecomesCreatureSourceEffect extends ContinuousEffectImpl implements
private void setText() { private void setText() {
if (type != null && !type.isEmpty()) { 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 { } else {
staticText = duration.toString() + ", {this} becomes a " + token.getDescription(); staticText = duration.toString() + " {this} becomes a " + token.getDescription();
} }
} }