3
0
Mirror von https://github.com/PaperMC/Paper.git synchronisiert 2024-11-15 20:40:07 +01:00

Raise the limit slightly to account for colors

Dieser Commit ist enthalten in:
Thinkofdeath 2015-06-12 10:38:20 +01:00
Ursprung 5d84673655
Commit 8f0f4ed80f

Datei anzeigen

@ -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 = "\"\"";
+ }