Paper/nms-patches/BlockSapling.patch

54 Zeilen
2.4 KiB
Diff

2015-05-25 12:37:24 +02:00
--- a/net/minecraft/server/BlockSapling.java
+++ b/net/minecraft/server/BlockSapling.java
@@ -2,11 +2,19 @@
import java.util.Random;
+// CraftBukkit start
+import org.bukkit.Location;
+import org.bukkit.TreeType;
+import org.bukkit.block.BlockState;
+import org.bukkit.event.world.StructureGrowEvent;
+// CraftBukkit end
+
public class BlockSapling extends BlockPlant implements IBlockFragilePlantElement {
2019-12-10 23:00:00 +01:00
public static final BlockStateInteger STAGE = BlockProperties.au;
2018-07-15 02:00:00 +02:00
protected static final VoxelShape b = Block.a(2.0D, 0.0D, 2.0D, 14.0D, 12.0D, 14.0D);
private final WorldGenTreeProvider c;
+ public static TreeType treeType; // CraftBukkit
2018-07-15 02:00:00 +02:00
protected BlockSapling(WorldGenTreeProvider worldgentreeprovider, Block.Info block_info) {
super(block_info);
@@ -23,7 +31,30 @@
2019-12-10 23:00:00 +01:00
public void tick(IBlockData iblockdata, WorldServer worldserver, BlockPosition blockposition, Random random) {
super.tick(iblockdata, worldserver, blockposition, random);
if (worldserver.getLightLevel(blockposition.up()) >= 9 && random.nextInt(7) == 0) {
2018-07-15 02:00:00 +02:00
+ // CraftBukkit start
2019-12-10 23:00:00 +01:00
+ worldserver.captureTreeGeneration = true;
2018-07-15 02:00:00 +02:00
+ // CraftBukkit end
2019-12-10 23:00:00 +01:00
this.grow(worldserver, blockposition, iblockdata, random);
2018-07-15 02:00:00 +02:00
+ // CraftBukkit start
2019-12-10 23:00:00 +01:00
+ worldserver.captureTreeGeneration = false;
+ if (worldserver.capturedBlockStates.size() > 0) {
2018-07-15 02:00:00 +02:00
+ TreeType treeType = BlockSapling.treeType;
+ BlockSapling.treeType = null;
2019-12-10 23:00:00 +01:00
+ Location location = new Location(worldserver.getWorld(), blockposition.getX(), blockposition.getY(), blockposition.getZ());
+ java.util.List<BlockState> blocks = new java.util.ArrayList<>(worldserver.capturedBlockStates.values());
2019-12-10 23:00:00 +01:00
+ worldserver.capturedBlockStates.clear();
2018-07-15 02:00:00 +02:00
+ StructureGrowEvent event = null;
+ if (treeType != null) {
+ event = new StructureGrowEvent(location, treeType, false, null, blocks);
+ org.bukkit.Bukkit.getPluginManager().callEvent(event);
+ }
+ if (event == null || !event.isCancelled()) {
+ for (BlockState blockstate : blocks) {
+ blockstate.update(true);
+ }
+ }
2018-07-15 02:00:00 +02:00
+ }
+ // CraftBukkit end
}
2018-07-15 02:00:00 +02:00
}