mirror of
https://github.com/PaperMC/Paper.git
synced 2024-12-01 12:41:50 +01:00
Raise the limit slightly to account for colors
This commit is contained in:
parent
5d84673655
commit
8f0f4ed80f
1 changed files with 1 additions and 1 deletions
|
@ -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 a new issue