package net.minecraft.server; public class ItemEnderPearl extends Item { public ItemEnderPearl() { this.maxStackSize = 16; this.a(CreativeModeTab.f); } public InteractionResultWrapper<ItemStack> a(World world, EntityHuman entityhuman, EnumHand enumhand) { ItemStack itemstack = entityhuman.b(enumhand); // CraftBukkit start - change order if (!world.isClientSide) { EntityEnderPearl entityenderpearl = new EntityEnderPearl(world, entityhuman); entityenderpearl.a(entityhuman, entityhuman.pitch, entityhuman.yaw, 0.0F, 1.5F, 1.0F); if (!world.addEntity(entityenderpearl)) { if (entityhuman instanceof EntityPlayer) { ((EntityPlayer) entityhuman).getBukkitEntity().updateInventory(); } return new InteractionResultWrapper(EnumInteractionResult.FAIL, itemstack); } } if (!entityhuman.abilities.canInstantlyBuild) { itemstack.subtract(1); } world.a((EntityHuman) null, entityhuman.locX, entityhuman.locY, entityhuman.locZ, SoundEffects.bj, SoundCategory.NEUTRAL, 0.5F, 0.4F / (ItemEnderPearl.j.nextFloat() * 0.4F + 0.8F)); entityhuman.di().a(this, 20); // CraftBukkit end entityhuman.b(StatisticList.b((Item) this)); return new InteractionResultWrapper(EnumInteractionResult.SUCCESS, itemstack); } }