mirror of
https://github.com/PaperMC/Paper.git
synced 2024-11-24 03:25:15 +01:00
[Bleeding] Fixed dropping invalid Magma Creams. Fixes BUKKIT-1336
This commit is contained in:
parent
f1a235dcba
commit
b45184fdf8
@ -48,7 +48,9 @@ public class EntityMagmaCube extends EntitySlime {
|
||||
k += this.random.nextInt(i + 1);
|
||||
}
|
||||
|
||||
loot.add(new org.bukkit.inventory.ItemStack(j, k));
|
||||
if (k > 0) {
|
||||
loot.add(new org.bukkit.inventory.ItemStack(j, k));
|
||||
}
|
||||
}
|
||||
|
||||
CraftEventFactory.callEntityDeathEvent(this, loot);
|
||||
|
Loading…
Reference in New Issue
Block a user