mirror of
https://github.com/PaperMC/Paper.git
synced 2024-12-28 20:07:41 +01:00
Allow proper checking of empty item stacks
This commit is contained in:
parent
d4ab21c047
commit
675028a699
@ -45,12 +45,19 @@ public final class CraftItemStack extends ItemStack {
|
|||||||
}
|
}
|
||||||
// Paper end - MC Utils
|
// Paper end - MC Utils
|
||||||
|
|
||||||
|
// Paper start - override isEmpty to use vanilla's impl
|
||||||
|
@Override
|
||||||
|
public boolean isEmpty() {
|
||||||
|
return handle == null || handle.isEmpty();
|
||||||
|
}
|
||||||
|
// Paper end - override isEmpty to use vanilla's impl
|
||||||
|
|
||||||
public static net.minecraft.world.item.ItemStack asNMSCopy(ItemStack original) {
|
public static net.minecraft.world.item.ItemStack asNMSCopy(ItemStack original) {
|
||||||
if (original instanceof CraftItemStack) {
|
if (original instanceof CraftItemStack) {
|
||||||
CraftItemStack stack = (CraftItemStack) original;
|
CraftItemStack stack = (CraftItemStack) original;
|
||||||
return stack.handle == null ? net.minecraft.world.item.ItemStack.EMPTY : stack.handle.copy();
|
return stack.handle == null ? net.minecraft.world.item.ItemStack.EMPTY : stack.handle.copy();
|
||||||
}
|
}
|
||||||
if (original == null || original.getType() == Material.AIR) {
|
if (original == null || original.isEmpty()) { // Paper - override isEmpty to use vanilla's impl; use isEmpty
|
||||||
return net.minecraft.world.item.ItemStack.EMPTY;
|
return net.minecraft.world.item.ItemStack.EMPTY;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user