mirror of
https://github.com/PaperMC/Paper.git
synced 2024-11-09 20:30:28 +01:00
24557bc2b3
For more information please see http://www.spigotmc.org/
27 lines
1017 B
Diff
27 lines
1017 B
Diff
--- ../work/decompile-bb26c12b/net/minecraft/server/BlockLeaves.java 2014-11-27 08:59:46.537422569 +1100
|
|
+++ src/main/java/net/minecraft/server/BlockLeaves.java 2014-11-27 08:42:10.132850949 +1100
|
|
@@ -2,6 +2,8 @@
|
|
|
|
import java.util.Random;
|
|
|
|
+import org.bukkit.event.block.LeavesDecayEvent; // CraftBukkit
|
|
+
|
|
public abstract class BlockLeaves extends BlockTransparent {
|
|
|
|
public static final BlockStateBoolean DECAYABLE = BlockStateBoolean.of("decayable");
|
|
@@ -128,6 +130,14 @@
|
|
}
|
|
|
|
private void d(World world, BlockPosition blockposition) {
|
|
+ // CraftBukkit start
|
|
+ LeavesDecayEvent event = new LeavesDecayEvent(world.getWorld().getBlockAt(blockposition.getX(), blockposition.getY(), blockposition.getZ()));
|
|
+ world.getServer().getPluginManager().callEvent(event);
|
|
+
|
|
+ if (event.isCancelled()) {
|
|
+ return;
|
|
+ }
|
|
+ // CraftBukkit end
|
|
this.b(world, blockposition, world.getType(blockposition), 0);
|
|
world.setAir(blockposition);
|
|
}
|