mirror of
https://github.com/PaperMC/Paper.git
synced 2025-01-10 18:27:41 +01:00
SPIGOT-5425: Prevent empty/air loot (again?)
By: md_5 <git@md-5.net>
This commit is contained in:
parent
7dbf1ee072
commit
2667479a6d
10
paper-server/nms-patches/LootTable.patch
Normal file
10
paper-server/nms-patches/LootTable.patch
Normal file
@ -0,0 +1,10 @@
|
||||
--- a/net/minecraft/server/LootTable.java
|
||||
+++ b/net/minecraft/server/LootTable.java
|
||||
@@ -39,6 +39,7 @@
|
||||
public static Consumer<ItemStack> a(Consumer<ItemStack> consumer) {
|
||||
return (itemstack) -> {
|
||||
if (itemstack.getCount() < itemstack.getMaxStackSize()) {
|
||||
+ if (itemstack.isEmpty()) return; // CraftBukkit
|
||||
consumer.accept(itemstack);
|
||||
} else {
|
||||
int i = itemstack.getCount();
|
Loading…
Reference in New Issue
Block a user