2015-05-25 12:37:24 +02:00
|
|
|
--- a/net/minecraft/server/BlockReed.java
|
|
|
|
+++ b/net/minecraft/server/BlockReed.java
|
2016-05-10 13:47:39 +02:00
|
|
|
@@ -32,8 +32,12 @@
|
2014-11-25 22:32:16 +01:00
|
|
|
int j = ((Integer) iblockdata.get(BlockReed.AGE)).intValue();
|
|
|
|
|
|
|
|
if (j == 15) {
|
|
|
|
- world.setTypeUpdate(blockposition.up(), this.getBlockData());
|
|
|
|
+ // CraftBukkit start
|
2014-12-11 01:44:30 +01:00
|
|
|
+ // world.setTypeUpdate(blockposition.up(), this.getBlockData()); // CraftBukkit
|
|
|
|
+ BlockPosition upPos = blockposition.up();
|
2014-12-11 01:13:27 +01:00
|
|
|
+ org.bukkit.craftbukkit.event.CraftEventFactory.handleBlockGrowEvent(world, upPos.getX(), upPos.getY(), upPos.getZ(), this, 0);
|
|
|
|
world.setTypeAndData(blockposition, iblockdata.set(BlockReed.AGE, Integer.valueOf(0)), 4);
|
2014-11-25 22:32:16 +01:00
|
|
|
+ // CraftBukkit end
|
|
|
|
} else {
|
|
|
|
world.setTypeAndData(blockposition, iblockdata.set(BlockReed.AGE, Integer.valueOf(j + 1)), 4);
|
|
|
|
}
|