summaryrefslogtreecommitdiffstats
path: root/nms-patches/TileEntitySign.patch
diff options
context:
space:
mode:
authorThinkofdeath <thinkofdeath@spigotmc.org>2015-06-12 10:38:20 +0100
committerThinkofdeath <thinkofdeath@spigotmc.org>2015-06-12 10:38:44 +0100
commit8f0f4ed80ff8f2cdca424148d647e12b9391138b (patch)
tree0b61e9a12b5e95bb50bb5134a2dd78158e997814 /nms-patches/TileEntitySign.patch
parent5d846736551f3961b5f41aeb8c14a368ea6141bf (diff)
downloadcraftbukkit-8f0f4ed80ff8f2cdca424148d647e12b9391138b.tar
craftbukkit-8f0f4ed80ff8f2cdca424148d647e12b9391138b.tar.gz
craftbukkit-8f0f4ed80ff8f2cdca424148d647e12b9391138b.tar.lz
craftbukkit-8f0f4ed80ff8f2cdca424148d647e12b9391138b.tar.xz
craftbukkit-8f0f4ed80ff8f2cdca424148d647e12b9391138b.zip
Raise the limit slightly to account for colors
Diffstat (limited to 'nms-patches/TileEntitySign.patch')
-rw-r--r--nms-patches/TileEntitySign.patch2
1 files changed, 1 insertions, 1 deletions
diff --git a/nms-patches/TileEntitySign.patch b/nms-patches/TileEntitySign.patch
index 8e0f5cee..e03d6705 100644
--- a/nms-patches/TileEntitySign.patch
+++ b/nms-patches/TileEntitySign.patch
@@ -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 = "\"\"";
+ }