2015-05-25 12:37:24 +02:00
|
|
|
--- a/net/minecraft/server/BlockCrops.java
|
|
|
|
+++ b/net/minecraft/server/BlockCrops.java
|
2016-11-17 02:41:03 +01:00
|
|
|
@@ -2,6 +2,8 @@
|
|
|
|
|
2014-11-25 22:32:16 +01:00
|
|
|
import java.util.Random;
|
|
|
|
|
|
|
|
+import org.bukkit.craftbukkit.event.CraftEventFactory; // CraftBukkit
|
|
|
|
+
|
|
|
|
public class BlockCrops extends BlockPlant implements IBlockFragilePlantElement {
|
|
|
|
|
2019-04-23 04:00:00 +02:00
|
|
|
public static final BlockStateInteger AGE = BlockProperties.ac;
|
|
|
|
@@ -52,7 +54,7 @@
|
2018-07-15 02:00:00 +02:00
|
|
|
float f = a((Block) this, (IBlockAccess) world, blockposition);
|
2014-11-25 22:32:16 +01:00
|
|
|
|
|
|
|
if (random.nextInt((int) (25.0F / f) + 1) == 0) {
|
2016-02-29 22:32:46 +01:00
|
|
|
- world.setTypeAndData(blockposition, this.setAge(i + 1), 2);
|
2018-07-15 02:00:00 +02:00
|
|
|
+ CraftEventFactory.handleBlockGrowEvent(world, blockposition, this.setAge(i + 1), 2); // CraftBukkit
|
2014-11-25 22:32:16 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2019-04-23 04:00:00 +02:00
|
|
|
@@ -67,7 +69,7 @@
|
2016-02-29 22:32:46 +01:00
|
|
|
i = j;
|
2014-11-25 22:32:16 +01:00
|
|
|
}
|
|
|
|
|
2016-02-29 22:32:46 +01:00
|
|
|
- world.setTypeAndData(blockposition, this.setAge(i), 2);
|
2018-07-15 02:00:00 +02:00
|
|
|
+ CraftEventFactory.handleBlockGrowEvent(world, blockposition, this.setAge(i), 2); // CraftBukkit
|
2014-11-25 22:32:16 +01:00
|
|
|
}
|
|
|
|
|
2018-07-15 02:00:00 +02:00
|
|
|
protected int a(World world) {
|