mirror of
https://github.com/PaperMC/Paper.git
synced 2024-11-05 10:20:53 +01:00
SPIGOT-3105: BlockFadeEvent for large snow blocks
This commit is contained in:
parent
cb61ac0404
commit
cb44e932be
14
nms-patches/BlockSnowBlock.patch
Normal file
14
nms-patches/BlockSnowBlock.patch
Normal file
@ -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);
|
||||
}
|
Loading…
Reference in New Issue
Block a user