2016-03-19 01:13:15 +01:00
|
|
|
--- a/net/minecraft/server/ItemSnowball.java
|
|
|
|
+++ b/net/minecraft/server/ItemSnowball.java
|
2016-11-17 02:41:03 +01:00
|
|
|
@@ -10,17 +10,29 @@
|
|
|
|
public InteractionResultWrapper<ItemStack> a(World world, EntityHuman entityhuman, EnumHand enumhand) {
|
|
|
|
ItemStack itemstack = entityhuman.b(enumhand);
|
2016-03-19 01:13:15 +01:00
|
|
|
|
|
|
|
+ // CraftBukkit start - moved down
|
2016-11-17 02:41:03 +01:00
|
|
|
+ /*
|
|
|
|
if (!entityhuman.abilities.canInstantlyBuild) {
|
|
|
|
itemstack.subtract(1);
|
2016-03-19 01:13:15 +01:00
|
|
|
}
|
|
|
|
|
2017-05-14 04:00:00 +02:00
|
|
|
world.a((EntityHuman) null, entityhuman.locX, entityhuman.locY, entityhuman.locZ, SoundEffects.hp, SoundCategory.NEUTRAL, 0.5F, 0.4F / (ItemSnowball.j.nextFloat() * 0.4F + 0.8F));
|
2016-03-30 21:50:59 +02:00
|
|
|
+ */
|
2016-03-19 01:13:15 +01:00
|
|
|
if (!world.isClientSide) {
|
|
|
|
EntitySnowball entitysnowball = new EntitySnowball(world, entityhuman);
|
|
|
|
|
|
|
|
entitysnowball.a(entityhuman, entityhuman.pitch, entityhuman.yaw, 0.0F, 1.5F, 1.0F);
|
|
|
|
- world.addEntity(entitysnowball);
|
|
|
|
+ if (world.addEntity(entitysnowball)) {
|
|
|
|
+ if (!entityhuman.abilities.canInstantlyBuild) {
|
2016-11-17 02:41:03 +01:00
|
|
|
+ itemstack.subtract(1);
|
2016-03-19 01:13:15 +01:00
|
|
|
+ }
|
|
|
|
+
|
2017-05-14 04:00:00 +02:00
|
|
|
+ world.a((EntityHuman) null, entityhuman.locX, entityhuman.locY, entityhuman.locZ, SoundEffects.hp, SoundCategory.NEUTRAL, 0.5F, 0.4F / (ItemSnowball.j.nextFloat() * 0.4F + 0.8F));
|
2016-03-19 01:13:15 +01:00
|
|
|
+ } else if (entityhuman instanceof EntityPlayer) {
|
|
|
|
+ ((EntityPlayer) entityhuman).getBukkitEntity().updateInventory();
|
|
|
|
+ }
|
|
|
|
}
|
|
|
|
+ // CraftBukkit end
|
|
|
|
|
|
|
|
entityhuman.b(StatisticList.b((Item) this));
|
|
|
|
return new InteractionResultWrapper(EnumInteractionResult.SUCCESS, itemstack);
|