mirror of
https://github.com/PaperMC/Paper.git
synced 2024-12-02 04:56:50 +01:00
[Bleeding] Fix snowball drops. Fixes BUKKIT-1314
This commit is contained in:
parent
80db22b643
commit
e66159e21d
1 changed files with 1 additions and 1 deletions
|
@ -74,7 +74,7 @@ public class BlockSnow extends Block {
|
|||
|
||||
// CraftBukkit start - Calculate drops
|
||||
public java.util.ArrayList<ItemStack> calculateDrops(World world, EntityHuman entityhuman, int i, int j, int k, int l) {
|
||||
this.a(world, i, j, k, new ItemStack(Item.SNOW_BALL.id, 1, 1));
|
||||
this.a(world, i, j, k, new ItemStack(Item.SNOW_BALL.id, 1, 0));
|
||||
return this.dropList;
|
||||
}
|
||||
// CraftBukkit end
|
||||
|
|
Loading…
Reference in a new issue