mirror of
https://github.com/PaperMC/Paper.git
synced 2024-11-05 10:20:53 +01:00
42 lines
2.2 KiB
Diff
42 lines
2.2 KiB
Diff
--- a/net/minecraft/server/BlockStem.java
|
|
+++ b/net/minecraft/server/BlockStem.java
|
|
@@ -2,6 +2,8 @@
|
|
|
|
import java.util.Random;
|
|
|
|
+import org.bukkit.craftbukkit.event.CraftEventFactory; // CraftBukkit
|
|
+
|
|
public class BlockStem extends BlockPlant implements IBlockFragilePlantElement {
|
|
|
|
public static final BlockStateInteger AGE = BlockProperties.ac;
|
|
@@ -35,14 +37,18 @@
|
|
|
|
if (i < 7) {
|
|
iblockdata = (IBlockData) iblockdata.set(BlockStem.AGE, i + 1);
|
|
- world.setTypeAndData(blockposition, iblockdata, 2);
|
|
+ CraftEventFactory.handleBlockGrowEvent(world, blockposition, iblockdata, 2); // CraftBukkit
|
|
} else {
|
|
EnumDirection enumdirection = EnumDirection.EnumDirectionLimit.HORIZONTAL.a(random);
|
|
BlockPosition blockposition1 = blockposition.shift(enumdirection);
|
|
Block block = world.getType(blockposition1.down()).getBlock();
|
|
|
|
if (world.getType(blockposition1).isAir() && (block == Blocks.FARMLAND || block == Blocks.DIRT || block == Blocks.COARSE_DIRT || block == Blocks.PODZOL || block == Blocks.GRASS_BLOCK)) {
|
|
- world.setTypeUpdate(blockposition1, this.blockFruit.getBlockData());
|
|
+ // CraftBukkit start
|
|
+ if (!CraftEventFactory.handleBlockGrowEvent(world, blockposition1, this.blockFruit.getBlockData())) {
|
|
+ return;
|
|
+ }
|
|
+ // CraftBukkit end
|
|
world.setTypeUpdate(blockposition, (IBlockData) this.blockFruit.e().getBlockData().set(BlockFacingHorizontal.FACING, enumdirection));
|
|
}
|
|
}
|
|
@@ -66,7 +72,7 @@
|
|
int i = Math.min(7, (Integer) iblockdata.get(BlockStem.AGE) + MathHelper.nextInt(world.random, 2, 5));
|
|
IBlockData iblockdata1 = (IBlockData) iblockdata.set(BlockStem.AGE, i);
|
|
|
|
- world.setTypeAndData(blockposition, iblockdata1, 2);
|
|
+ CraftEventFactory.handleBlockGrowEvent(world, blockposition, iblockdata1, 2); // CraftBukkit
|
|
if (i == 7) {
|
|
iblockdata1.a(world, blockposition, world.random);
|
|
}
|