2015-05-25 12:37:24 +02:00
|
|
|
--- a/net/minecraft/server/BlockStem.java
|
|
|
|
+++ b/net/minecraft/server/BlockStem.java
|
2016-05-10 13:47:39 +02:00
|
|
|
@@ -4,6 +4,8 @@
|
2014-11-25 22:32:16 +01:00
|
|
|
import java.util.Random;
|
2016-05-10 13:47:39 +02:00
|
|
|
import javax.annotation.Nullable;
|
2014-11-25 22:32:16 +01:00
|
|
|
|
|
|
|
+import org.bukkit.craftbukkit.event.CraftEventFactory; // CraftBukkit
|
|
|
|
+
|
|
|
|
public class BlockStem extends BlockPlant implements IBlockFragilePlantElement {
|
|
|
|
|
|
|
|
public static final BlockStateInteger AGE = BlockStateInteger.of("age", 0, 7);
|
2016-05-10 13:47:39 +02:00
|
|
|
@@ -54,7 +56,8 @@
|
2014-11-25 22:32:16 +01:00
|
|
|
|
|
|
|
if (i < 7) {
|
|
|
|
iblockdata = iblockdata.set(BlockStem.AGE, Integer.valueOf(i + 1));
|
|
|
|
- world.setTypeAndData(blockposition, iblockdata, 2);
|
|
|
|
+ // world.setTypeAndData(blockposition, iblockdata, 2); // CraftBukkit
|
|
|
|
+ CraftEventFactory.handleBlockGrowEvent(world, blockposition.getX(), blockposition.getY(), blockposition.getZ(), this, toLegacyData(iblockdata)); // CraftBukkit
|
|
|
|
} else {
|
2015-02-26 23:41:06 +01:00
|
|
|
Iterator iterator = EnumDirection.EnumDirectionLimit.HORIZONTAL.iterator();
|
2014-11-25 22:32:16 +01:00
|
|
|
|
2016-05-10 13:47:39 +02:00
|
|
|
@@ -70,7 +73,8 @@
|
2014-11-25 22:32:16 +01:00
|
|
|
Block block = world.getType(blockposition.down()).getBlock();
|
|
|
|
|
|
|
|
if (world.getType(blockposition).getBlock().material == Material.AIR && (block == Blocks.FARMLAND || block == Blocks.DIRT || block == Blocks.GRASS)) {
|
|
|
|
- world.setTypeUpdate(blockposition, this.blockFruit.getBlockData());
|
|
|
|
+ // world.setTypeUpdate(blockposition, this.blockFruit.getBlockData()); // CraftBukkit
|
|
|
|
+ CraftEventFactory.handleBlockGrowEvent(world, blockposition.getX(), blockposition.getY(), blockposition.getZ(), this.blockFruit, 0); // CraftBukkit
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2016-05-10 13:47:39 +02:00
|
|
|
@@ -81,7 +85,8 @@
|
2014-11-25 22:32:16 +01:00
|
|
|
public void g(World world, BlockPosition blockposition, IBlockData iblockdata) {
|
|
|
|
int i = ((Integer) iblockdata.get(BlockStem.AGE)).intValue() + MathHelper.nextInt(world.random, 2, 5);
|
|
|
|
|
|
|
|
- world.setTypeAndData(blockposition, iblockdata.set(BlockStem.AGE, Integer.valueOf(Math.min(7, i))), 2);
|
|
|
|
+ // world.setTypeAndData(blockposition, iblockdata.set(BlockStem.AGE, Integer.valueOf(Math.min(7, i))), 2);
|
|
|
|
+ CraftEventFactory.handleBlockGrowEvent(world, blockposition.getX(), blockposition.getY(), blockposition.getZ(), this, Math.min(7, i)); // CraftBukkit
|
|
|
|
}
|
|
|
|
|
2016-02-29 22:32:46 +01:00
|
|
|
public void dropNaturally(World world, BlockPosition blockposition, IBlockData iblockdata, float f, int i) {
|