diff --git a/Spigot-Server-Patches/0200-MC-112017-Allow-31-instead-of-30-for-item-names.patch b/Spigot-Server-Patches/0200-MC-112017-Allow-31-instead-of-30-for-item-names.patch new file mode 100644 index 0000000000..d801f6d77f --- /dev/null +++ b/Spigot-Server-Patches/0200-MC-112017-Allow-31-instead-of-30-for-item-names.patch @@ -0,0 +1,22 @@ +From 620549ed970974f041d2c0aa00bf4f685a0eca4c Mon Sep 17 00:00:00 2001 +From: Aikar +Date: Mon, 2 Jan 2017 02:43:22 -0500 +Subject: [PATCH] MC-112017: Allow 31 instead of 30 for item names + + +diff --git a/src/main/java/net/minecraft/server/PlayerConnection.java b/src/main/java/net/minecraft/server/PlayerConnection.java +index 3730af8df..e9a84285a 100644 +--- a/src/main/java/net/minecraft/server/PlayerConnection.java ++++ b/src/main/java/net/minecraft/server/PlayerConnection.java +@@ -2425,7 +2425,7 @@ public class PlayerConnection implements PacketListenerPlayIn, ITickable { + if (packetplayincustompayload.b() != null && packetplayincustompayload.b().readableBytes() >= 1) { + String s4 = SharedConstants.a(packetplayincustompayload.b().e(32767)); + +- if (s4.length() <= 30) { ++ if (s4.length() <= 31) { // Paper - MC-112017 + if (!s4.isEmpty() || containeranvil.getSlot(2).getItem().isEmpty()) containeranvil.a(s4); // Paper - Hack Fix for MC-111699 + } + } else { +-- +2.11.0 +