mirror of
https://github.com/PaperMC/Paper.git
synced 2025-01-25 01:25:03 +01:00
a8ddf37419
By: GunfighterJ <joseph.jenniges@gmail.com>
16 lines
1 KiB
Diff
16 lines
1 KiB
Diff
@@ -29,8 +29,13 @@
|
|
int j = ((Integer) iblockdata.get(BlockReed.AGE)).intValue();
|
|
|
|
if (j == 15) {
|
|
- world.setTypeUpdate(blockposition.up(), this.getBlockData());
|
|
- world.setTypeAndData(blockposition, iblockdata.set(BlockReed.AGE, Integer.valueOf(0)), 4);
|
|
+ // CraftBukkit start
|
|
+ // world.setTypeUpdate(blockposition.up(), this.getBlockData());
|
|
+ // world.setTypeAndData(blockposition, iblockdata.set(BlockReed.AGE, Integer.valueOf(0)), 4);
|
|
+ BlockPosition upPos = blockposition.up();
|
|
+ org.bukkit.craftbukkit.event.CraftEventFactory.handleBlockGrowEvent(world, upPos.getX(), upPos.getY(), upPos.getZ(), this, 0);
|
|
+ // CraftBukkit end
|
|
+
|
|
} else {
|
|
world.setTypeAndData(blockposition, iblockdata.set(BlockReed.AGE, Integer.valueOf(j + 1)), 4);
|
|
}
|