mirror of
https://hub.spigotmc.org/stash/scm/spigot/craftbukkit.git
synced 2025-08-05 16:49:30 +00:00
12 lines
275 B
Diff
12 lines
275 B
Diff
--- 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;
|
|
}
|
|
|