From de1ca9f6eda4540fbbd4eff7721d9e5f931307b7 Mon Sep 17 00:00:00 2001 From: CraftBukkit/Spigot Date: Mon, 10 Sep 2018 08:30:13 +1000 Subject: [PATCH] SPIGOT-4361: BlockFadeEvent for regular coral By: md_5 --- paper-server/nms-patches/BlockCoralPlant.patch | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 paper-server/nms-patches/BlockCoralPlant.patch diff --git a/paper-server/nms-patches/BlockCoralPlant.patch b/paper-server/nms-patches/BlockCoralPlant.patch new file mode 100644 index 000000000..dc5e8cdbb --- /dev/null +++ b/paper-server/nms-patches/BlockCoralPlant.patch @@ -0,0 +1,14 @@ +--- a/net/minecraft/server/BlockCoralPlant.java ++++ b/net/minecraft/server/BlockCoralPlant.java +@@ -18,6 +18,11 @@ + + public void a(IBlockData iblockdata, World world, BlockPosition blockposition, Random random) { + if (!b_(iblockdata, world, blockposition)) { ++ // CraftBukkit start ++ if (org.bukkit.craftbukkit.event.CraftEventFactory.callBlockFadeEvent(world, blockposition, this.c.getBlockData().set(BlockCoralPlant.b, Boolean.valueOf(false))).isCancelled()) { ++ return; ++ } ++ // CraftBukkit end + world.setTypeAndData(blockposition, (IBlockData) this.c.getBlockData().set(BlockCoralPlant.b, Boolean.valueOf(false)), 2); + } +