mirror of
https://github.com/PaperMC/Paper.git
synced 2024-11-30 04:02:50 +01:00
[Bleeding] Fixed dropping invalid Magma Creams. Fixes BUKKIT-1336
This commit is contained in:
parent
f1a235dcba
commit
b45184fdf8
1 changed files with 3 additions and 1 deletions
|
@ -48,7 +48,9 @@ public class EntityMagmaCube extends EntitySlime {
|
||||||
k += this.random.nextInt(i + 1);
|
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);
|
CraftEventFactory.callEntityDeathEvent(this, loot);
|
||||||
|
|
Loading…
Reference in a new issue