Raise the limit slightly to account for colors

This commit is contained in:
Thinkofdeath 2015-06-12 10:38:20 +01:00
parent 5d84673655
commit 8f0f4ed80f

View File

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