From 17ff1e04679d5826f7d574fecc1a97820d5579d1 Mon Sep 17 00:00:00 2001 From: md_5 Date: Mon, 12 Nov 2018 19:19:04 +1100 Subject: SPIGOT-4483: Missing EntityInteractEvent call for zombies on eggs --- nms-patches/PathfinderGoalRemoveBlock.patch | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 nms-patches/PathfinderGoalRemoveBlock.patch (limited to 'nms-patches') diff --git a/nms-patches/PathfinderGoalRemoveBlock.patch b/nms-patches/PathfinderGoalRemoveBlock.patch new file mode 100644 index 00000000..b97b1742 --- /dev/null +++ b/nms-patches/PathfinderGoalRemoveBlock.patch @@ -0,0 +1,28 @@ +--- a/net/minecraft/server/PathfinderGoalRemoveBlock.java ++++ b/net/minecraft/server/PathfinderGoalRemoveBlock.java +@@ -2,6 +2,10 @@ + + import java.util.Random; + import javax.annotation.Nullable; ++// CraftBukkit start ++import org.bukkit.craftbukkit.block.CraftBlock; ++import org.bukkit.event.entity.EntityInteractEvent; ++// CraftBukkit end + + public class PathfinderGoalRemoveBlock extends PathfinderGoalGotoTarget { + +@@ -66,6 +70,14 @@ + } + + if (this.h > 60) { ++ // CraftBukkit start - Step on eggs ++ EntityInteractEvent event = new EntityInteractEvent(this.g.getBukkitEntity(), CraftBlock.at(world, blockposition1)); ++ world.getServer().getPluginManager().callEvent((EntityInteractEvent) event); ++ ++ if (event.isCancelled()) { ++ return; ++ } ++ // CraftBukkit end + world.setAir(blockposition1); + if (!world.isClientSide) { + for (int i = 0; i < 20; ++i) { -- cgit v1.2.3