mirror of
https://github.com/PaperMC/Paper.git
synced 2024-11-05 10:20:53 +01:00
30 lines
1.0 KiB
Diff
30 lines
1.0 KiB
Diff
--- a/net/minecraft/server/BlockCrops.java
|
|
+++ b/net/minecraft/server/BlockCrops.java
|
|
@@ -2,6 +2,8 @@
|
|
|
|
import java.util.Random;
|
|
|
|
+import org.bukkit.craftbukkit.event.CraftEventFactory; // CraftBukkit
|
|
+
|
|
public class BlockCrops extends BlockPlant implements IBlockFragilePlantElement {
|
|
|
|
public static final BlockStateInteger AGE = BlockProperties.ac;
|
|
@@ -52,7 +54,7 @@
|
|
float f = a((Block) this, (IBlockAccess) world, blockposition);
|
|
|
|
if (random.nextInt((int) (25.0F / f) + 1) == 0) {
|
|
- world.setTypeAndData(blockposition, this.setAge(i + 1), 2);
|
|
+ CraftEventFactory.handleBlockGrowEvent(world, blockposition, this.setAge(i + 1), 2); // CraftBukkit
|
|
}
|
|
}
|
|
}
|
|
@@ -67,7 +69,7 @@
|
|
i = j;
|
|
}
|
|
|
|
- world.setTypeAndData(blockposition, this.setAge(i), 2);
|
|
+ CraftEventFactory.handleBlockGrowEvent(world, blockposition, this.setAge(i), 2); // CraftBukkit
|
|
}
|
|
|
|
protected int a(World world) {
|