mirror of
https://github.com/PaperMC/Paper.git
synced 2024-11-05 10:20:53 +01:00
15 lines
625 B
Diff
15 lines
625 B
Diff
--- a/net/minecraft/server/BlockCoral.java
|
|
+++ b/net/minecraft/server/BlockCoral.java
|
|
@@ -15,6 +15,11 @@
|
|
@Override
|
|
public void tick(IBlockData iblockdata, World world, BlockPosition blockposition, Random random) {
|
|
if (!this.a((IBlockAccess) world, blockposition)) {
|
|
+ // CraftBukkit start
|
|
+ if (org.bukkit.craftbukkit.event.CraftEventFactory.callBlockFadeEvent(world, blockposition, this.a.getBlockData()).isCancelled()) {
|
|
+ return;
|
|
+ }
|
|
+ // CraftBukkit end
|
|
world.setTypeAndData(blockposition, this.a.getBlockData(), 2);
|
|
}
|
|
|