Patrone.cc-src-skid-me/toothless/server/nms-patches/Slot.patch

13 lines
275 B
Diff
Raw Permalink Normal View History

2019-06-19 05:50:21 +02:00
--- a/net/minecraft/server/Slot.java
+++ b/net/minecraft/server/Slot.java
@@ -45,6 +45,9 @@
}
public boolean hasItem() {
+ if (getItem() != null && getItem().count == 0) {
+ set(null);
+ }
return this.getItem() != null;
}