diff --git a/nms-patches/net/minecraft/world/level/block/BlockNylium.patch b/nms-patches/net/minecraft/world/level/block/BlockNylium.patch new file mode 100644 index 000000000..2125554e7 --- /dev/null +++ b/nms-patches/net/minecraft/world/level/block/BlockNylium.patch @@ -0,0 +1,14 @@ +--- a/net/minecraft/world/level/block/BlockNylium.java ++++ b/net/minecraft/world/level/block/BlockNylium.java +@@ -31,6 +31,11 @@ + @Override + public void tick(IBlockData iblockdata, WorldServer worldserver, BlockPosition blockposition, Random random) { + if (!b(iblockdata, (IWorldReader) worldserver, blockposition)) { ++ // CraftBukkit start ++ if (org.bukkit.craftbukkit.event.CraftEventFactory.callBlockFadeEvent(worldserver, blockposition, Blocks.NETHERRACK.getBlockData()).isCancelled()) { ++ return; ++ } ++ // CraftBukkit end + worldserver.setTypeUpdate(blockposition, Blocks.NETHERRACK.getBlockData()); + } +