Raise the limit slightly to account for colors
By: Thinkofdeath <thinkofdeath@spigotmc.org>
This commit is contained in:
parent
c2130ccb81
commit
90df5ef6df
1 changed files with 1 additions and 1 deletions
|
@ -25,7 +25,7 @@
|
||||||
+
|
+
|
||||||
for (int i = 0; i < 4; ++i) {
|
for (int i = 0; i < 4; ++i) {
|
||||||
String s = nbttagcompound.getString("Text" + (i + 1));
|
String s = nbttagcompound.getString("Text" + (i + 1));
|
||||||
+ if (s != null && s.length() > 384) {
|
+ if (s != null && s.length() > 2048) {
|
||||||
+ s = "\"\"";
|
+ s = "\"\"";
|
||||||
+ }
|
+ }
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue