1
0
mirror of https://e.coding.net/circlecloud/YumCore.git synced 2024-11-21 01:38:51 +00:00

fix: 修复tip字符串截取错误

Signed-off-by: 502647092 <admin@yumc.pw>
This commit is contained in:
502647092 2016-08-22 20:57:39 +08:00
parent 83935aaa5c
commit e8e2ab3dab

View File

@ -160,7 +160,7 @@ public class Tellraw {
for (final String t : texts) {
text.append(t).append("\n");
}
return tip(text.toString().substring(0, text.length() - 2));
return tip(text.toString().substring(0, text.length() - 1));
}
/**