From 7b9165d317d179a63ca1786be6e078c6bec4337c Mon Sep 17 00:00:00 2001 From: ilotterytea Date: Sun, 4 Sep 2022 20:20:18 +0600 Subject: there is no space when you return text in FormattedText function --- core/src/com/ilotterytea/maxoning/utils/I18N.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'core/src/com') 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(); -- cgit v1.2.3