summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormd_5 <git@md-5.net>2016-12-03 09:55:36 +1100
committermd_5 <git@md-5.net>2016-12-03 09:55:36 +1100
commit9beb0c9968c228788c7bbc446316ccd20e6a0c15 (patch)
treefae12c404e6dbf457adf3fd31993f64ac05d00bb
parent1d54397474b270227e82aabf15ef5444ecfe839c (diff)
downloadcraftbukkit-9beb0c9968c228788c7bbc446316ccd20e6a0c15.tar
craftbukkit-9beb0c9968c228788c7bbc446316ccd20e6a0c15.tar.gz
craftbukkit-9beb0c9968c228788c7bbc446316ccd20e6a0c15.tar.lz
craftbukkit-9beb0c9968c228788c7bbc446316ccd20e6a0c15.tar.xz
craftbukkit-9beb0c9968c228788c7bbc446316ccd20e6a0c15.zip
SPIGOT-2879: Change order of entity addition for ender pearls
-rw-r--r--nms-patches/ItemEnderPearl.patch35
1 files changed, 35 insertions, 0 deletions
diff --git a/nms-patches/ItemEnderPearl.patch b/nms-patches/ItemEnderPearl.patch
new file mode 100644
index 00000000..72c19dab
--- /dev/null
+++ b/nms-patches/ItemEnderPearl.patch
@@ -0,0 +1,35 @@
+--- a/net/minecraft/server/ItemEnderPearl.java
++++ b/net/minecraft/server/ItemEnderPearl.java
+@@ -10,18 +10,26 @@
+ 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);
+- if (!world.isClientSide) {
+- EntityEnderPearl entityenderpearl = new EntityEnderPearl(world, entityhuman);
+-
+- entityenderpearl.a(entityhuman, entityhuman.pitch, entityhuman.yaw, 0.0F, 1.5F, 1.0F);
+- world.addEntity(entityenderpearl);
+- }
++ // CraftBukkit end
+
+ entityhuman.b(StatisticList.b((Item) this));
+ return new InteractionResultWrapper(EnumInteractionResult.SUCCESS, itemstack);