mirror of
https://github.com/PaperMC/Paper.git
synced 2024-11-05 10:20:53 +01:00
36 lines
1.6 KiB
Diff
36 lines
1.6 KiB
Diff
--- a/net/minecraft/server/BlockCocoa.java
|
|
+++ b/net/minecraft/server/BlockCocoa.java
|
|
@@ -2,6 +2,8 @@
|
|
|
|
import java.util.Random;
|
|
|
|
+import org.bukkit.craftbukkit.event.CraftEventFactory; // CraftBukkit
|
|
+
|
|
public class BlockCocoa extends BlockFacingHorizontal implements IBlockFragilePlantElement {
|
|
|
|
public static final BlockStateInteger AGE = BlockStateInteger.of("age", 0, 2);
|
|
@@ -23,7 +25,10 @@
|
|
int i = ((Integer) iblockdata.get(BlockCocoa.AGE)).intValue();
|
|
|
|
if (i < 2) {
|
|
- world.setTypeAndData(blockposition, iblockdata.set(BlockCocoa.AGE, Integer.valueOf(i + 1)), 2);
|
|
+ // CraftBukkit start
|
|
+ IBlockData data = iblockdata.set(AGE, Integer.valueOf(i + 1));
|
|
+ CraftEventFactory.handleBlockGrowEvent(world, blockposition.getX(), blockposition.getY(), blockposition.getZ(), this, toLegacyData(data));
|
|
+ // CraftBukkit end
|
|
}
|
|
}
|
|
|
|
@@ -124,7 +129,10 @@
|
|
}
|
|
|
|
public void b(World world, Random random, BlockPosition blockposition, IBlockData iblockdata) {
|
|
- world.setTypeAndData(blockposition, iblockdata.set(BlockCocoa.AGE, Integer.valueOf(((Integer) iblockdata.get(BlockCocoa.AGE)).intValue() + 1)), 2);
|
|
+ // CraftBukkit start
|
|
+ IBlockData data = iblockdata.set(AGE, Integer.valueOf(((Integer) iblockdata.get(AGE)).intValue() + 1));
|
|
+ CraftEventFactory.handleBlockGrowEvent(world, blockposition.getX(), blockposition.getY(), blockposition.getZ(), this, toLegacyData(data));
|
|
+ // CraftBukkit end
|
|
}
|
|
|
|
public IBlockData fromLegacyData(int i) {
|