mirror of
https://github.com/PaperMC/Paper.git
synced 2024-11-09 20:30:28 +01:00
13 lines
385 B
Diff
13 lines
385 B
Diff
--- ../work/decompile-8eb82bde//net/minecraft/server/Slot.java 2015-01-04 21:48:34.213601099 +0000
|
|
+++ src/main/java/net/minecraft/server/Slot.java 2015-01-04 21:48:34.213601099 +0000
|
|
@@ -45,6 +45,9 @@
|
|
}
|
|
|
|
public boolean hasItem() {
|
|
+ if (getItem() != null && getItem().count == 0) {
|
|
+ set(null);
|
|
+ }
|
|
return this.getItem() != null;
|
|
}
|
|
|