From 022b8c350a223f092e4fdbdce8ffb682f412fb29 Mon Sep 17 00:00:00 2001 From: md_5 Date: Mon, 10 Sep 2018 08:30:13 +1000 Subject: [PATCH] SPIGOT-4361: BlockFadeEvent for regular coral --- nms-patches/BlockCoralPlant.patch | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 nms-patches/BlockCoralPlant.patch diff --git a/nms-patches/BlockCoralPlant.patch b/nms-patches/BlockCoralPlant.patch new file mode 100644 index 0000000000..dc5e8cdbbd --- /dev/null +++ b/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); + } +