summaryrefslogtreecommitdiffstats
path: root/nms-patches/BlockSnowBlock.patch
diff options
context:
space:
mode:
Diffstat (limited to 'nms-patches/BlockSnowBlock.patch')
-rw-r--r--nms-patches/BlockSnowBlock.patch14
1 files changed, 14 insertions, 0 deletions
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);
+ }