diff options
| author | ilotterytea <iltsu@alright.party> | 2022-09-04 20:20:18 +0600 |
|---|---|---|
| committer | ilotterytea <iltsu@alright.party> | 2022-09-04 20:20:18 +0600 |
| commit | 7b9165d317d179a63ca1786be6e078c6bec4337c (patch) | |
| tree | 6200499c3216ed32c39aded481d78eefe3c0d36d /core | |
| parent | 479af21d317d36d3423a2ab90ae2e21441cc2e72 (diff) | |
there is no space when you return text in FormattedText function
Diffstat (limited to 'core')
| -rw-r--r-- | core/src/com/ilotterytea/maxoning/utils/I18N.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/src/com/ilotterytea/maxoning/utils/I18N.java b/core/src/com/ilotterytea/maxoning/utils/I18N.java index b253e0e..e5e4efc 100644 --- a/core/src/com/ilotterytea/maxoning/utils/I18N.java +++ b/core/src/com/ilotterytea/maxoning/utils/I18N.java @@ -45,7 +45,7 @@ public class I18N { if (index + 1 < params.length) { index++; } } - result.append(next); + result.append(next).append(' '); } return result.toString(); |
