mirror of
https://github.com/PaperMC/Paper.git
synced 2024-11-26 20:46:59 +01:00
Raise the limit slightly to account for colors
This commit is contained in:
parent
5d84673655
commit
8f0f4ed80f
@ -25,7 +25,7 @@
|
||||
+
|
||||
for (int i = 0; i < 4; ++i) {
|
||||
String s = nbttagcompound.getString("Text" + (i + 1));
|
||||
+ if (s != null && s.length() > 384) {
|
||||
+ if (s != null && s.length() > 2048) {
|
||||
+ s = "\"\"";
|
||||
+ }
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user