mirror of
https://github.com/PaperMC/Paper.git
synced 2025-01-09 17:57:34 +01:00
a0f2b74c8d
By: md_5 <git@md-5.net>
12 lines
684 B
Diff
12 lines
684 B
Diff
--- a/net/minecraft/server/BlockReed.java
|
|
+++ b/net/minecraft/server/BlockReed.java
|
|
@@ -33,7 +33,7 @@
|
|
int j = (Integer) iblockdata.get(BlockReed.AGE);
|
|
|
|
if (j == 15) {
|
|
- world.setTypeUpdate(blockposition.up(), this.getBlockData());
|
|
+ org.bukkit.craftbukkit.event.CraftEventFactory.handleBlockGrowEvent(world, blockposition.up(), this.getBlockData()); // CraftBukkit
|
|
world.setTypeAndData(blockposition, (IBlockData) iblockdata.set(BlockReed.AGE, 0), 4);
|
|
} else {
|
|
world.setTypeAndData(blockposition, (IBlockData) iblockdata.set(BlockReed.AGE, j + 1), 4);
|