mirror of
https://github.com/PaperMC/Paper.git
synced 2024-11-05 18:31:29 +01:00
42 lines
2.3 KiB
Diff
42 lines
2.3 KiB
Diff
--- a/net/minecraft/server/BlockStem.java
|
|
+++ b/net/minecraft/server/BlockStem.java
|
|
@@ -3,6 +3,8 @@
|
|
import java.util.Random;
|
|
import javax.annotation.Nullable;
|
|
|
|
+import org.bukkit.craftbukkit.event.CraftEventFactory; // CraftBukkit
|
|
+
|
|
public class BlockStem extends BlockPlant implements IBlockFragilePlantElement {
|
|
|
|
public static final BlockStateInteger AGE = BlockProperties.W;
|
|
@@ -33,14 +35,18 @@
|
|
|
|
if (i < 7) {
|
|
iblockdata = (IBlockData) iblockdata.set(BlockStem.AGE, Integer.valueOf(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));
|
|
}
|
|
}
|
|
@@ -94,7 +100,7 @@
|
|
int i = Math.min(7, ((Integer) iblockdata.get(BlockStem.AGE)).intValue() + MathHelper.nextInt(world.random, 2, 5));
|
|
IBlockData iblockdata1 = (IBlockData) iblockdata.set(BlockStem.AGE, Integer.valueOf(i));
|
|
|
|
- world.setTypeAndData(blockposition, iblockdata1, 2);
|
|
+ CraftEventFactory.handleBlockGrowEvent(world, blockposition, iblockdata1, 2); // CraftBukkit
|
|
if (i == 7) {
|
|
iblockdata1.a(world, blockposition, world.random);
|
|
}
|