3
0
Mirror von https://github.com/PaperMC/Paper.git synchronisiert 2024-11-16 04:50:05 +01:00
Paper/nms-patches/Slot.patch
2015-05-25 20:37:24 +10:00

22 Zeilen
488 B
Diff

--- a/net/minecraft/server/Slot.java
+++ b/net/minecraft/server/Slot.java
@@ -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;
}