mirror of
https://github.com/PaperMC/Paper.git
synced 2024-11-28 19:22:50 +01:00
SPIGOT-4361: BlockFadeEvent for regular coral
This commit is contained in:
parent
3123a069bf
commit
022b8c350a
1 changed files with 14 additions and 0 deletions
14
nms-patches/BlockCoralPlant.patch
Normal file
14
nms-patches/BlockCoralPlant.patch
Normal file
|
@ -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);
|
||||
}
|
||||
|
Loading…
Reference in a new issue