From cb44e932beff9ac7e9ba634cf35e63f41c3670f9 Mon Sep 17 00:00:00 2001 From: md_5 Date: Wed, 8 Mar 2017 14:24:11 +1100 Subject: SPIGOT-3105: BlockFadeEvent for large snow blocks --- nms-patches/BlockSnowBlock.patch | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 nms-patches/BlockSnowBlock.patch (limited to 'nms-patches') diff --git a/nms-patches/BlockSnowBlock.patch b/nms-patches/BlockSnowBlock.patch new file mode 100644 index 00000000..53291493 --- /dev/null +++ b/nms-patches/BlockSnowBlock.patch @@ -0,0 +1,14 @@ +--- a/net/minecraft/server/BlockSnowBlock.java ++++ b/net/minecraft/server/BlockSnowBlock.java +@@ -20,6 +20,11 @@ + + public void b(World world, BlockPosition blockposition, IBlockData iblockdata, Random random) { + if (world.getBrightness(EnumSkyBlock.BLOCK, blockposition) > 11) { ++ // CraftBukkit start ++ if (org.bukkit.craftbukkit.event.CraftEventFactory.callBlockFadeEvent(world.getWorld().getBlockAt(blockposition.getX(), blockposition.getY(), blockposition.getZ()), Blocks.AIR).isCancelled()) { ++ return; ++ } ++ // CraftBukkit end + this.b(world, blockposition, world.getType(blockposition), 0); + world.setAir(blockposition); + } -- cgit v1.2.3