summaryrefslogtreecommitdiffstats
path: root/nms-patches/Slot.patch
blob: 31176516419f709752ee619b2abb839df7fc0ae8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
--- a/net/minecraft/server/Slot.java
+++ b/net/minecraft/server/Slot.java
@@ -48,6 +48,9 @@
     }
 
     public boolean hasItem() {
+        if (getItem() != null && getItem().count == 0) {
+            set(null);
+        }
         return this.getItem() != null;
     }