summaryrefslogtreecommitdiffstats
path: root/nms-patches/Slot.patch
blob: 79694eae63510a2d8e0c1e46a19dccce60d25aa9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
--- /home/matt/mc-dev-private//net/minecraft/server/Slot.java	2015-02-26 22:40:23.091608134 +0000
+++ src/main/java/net/minecraft/server/Slot.java	2015-02-26 22:40:23.091608134 +0000
@@ -2,7 +2,7 @@
 
 public class Slot {
 
-    private final int index;
+    public final int index; // CraftBukkit - public
     public final IInventory inventory;
     public int rawSlotIndex;
     public int f;
@@ -45,6 +45,9 @@
     }
 
     public boolean hasItem() {
+        if (getItem() != null && getItem().count == 0) {
+            set(null);
+        }
         return this.getItem() != null;
     }