mirror of
https://github.com/correl/mage.git
synced 2024-12-25 03:00:15 +00:00
Remove comma change from BecomesCreatureSourceEffect staticText.
This commit is contained in:
parent
bf556c1a77
commit
a8631c6ff3
1 changed files with 2 additions and 2 deletions
|
@ -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();
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue