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:
parent
83935aaa5c
commit
e8e2ab3dab
@ -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));
|
||||
}
|
||||
|
||||
/**
|
||||
|
Loading…
Reference in New Issue
Block a user