Paper/nms-patches/BlockReed.patch

12 lines
684 B
Diff
Raw Normal View History

2015-05-25 12:37:24 +02:00
--- a/net/minecraft/server/BlockReed.java
+++ b/net/minecraft/server/BlockReed.java
2018-07-15 02:00:00 +02:00
@@ -29,7 +29,7 @@
2018-12-06 00:00:00 +01:00
int j = (Integer) iblockdata.get(BlockReed.AGE);
2018-07-15 02:00:00 +02:00
if (j == 15) {
- world.setTypeUpdate(blockposition.up(), this.getBlockData());
+ org.bukkit.craftbukkit.event.CraftEventFactory.handleBlockGrowEvent(world, blockposition.up(), this.getBlockData()); // CraftBukkit
2018-12-06 00:00:00 +01:00
world.setTypeAndData(blockposition, (IBlockData) iblockdata.set(BlockReed.AGE, 0), 4);
2018-07-15 02:00:00 +02:00
} else {
2018-12-06 00:00:00 +01:00
world.setTypeAndData(blockposition, (IBlockData) iblockdata.set(BlockReed.AGE, j + 1), 4);