From c13376df5d338b14a87305cebbbc930d47d20cb2 Mon Sep 17 00:00:00 2001 From: Thinkofdeath Date: Sun, 4 Jan 2015 22:06:29 +0000 Subject: SPIGOT-178: Treat ItemStacks of 0 size as empty --- nms-patches/Slot.patch | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 nms-patches/Slot.patch (limited to 'nms-patches') diff --git a/nms-patches/Slot.patch b/nms-patches/Slot.patch new file mode 100644 index 00000000..dd05f9c0 --- /dev/null +++ b/nms-patches/Slot.patch @@ -0,0 +1,12 @@ +--- ../work/decompile-8eb82bde//net/minecraft/server/Slot.java 2015-01-04 21:48:34.213601099 +0000 ++++ src/main/java/net/minecraft/server/Slot.java 2015-01-04 21:48:34.213601099 +0000 +@@ -45,6 +45,9 @@ + } + + public boolean hasItem() { ++ if (getItem() != null && getItem().count == 0) { ++ set(null); ++ } + return this.getItem() != null; + } + -- cgit v1.2.3