2014-12-11 01:13:27 +01:00
|
|
|
--- ../work/decompile-8eb82bde/net/minecraft/server/BlockReed.java 2014-12-11 00:12:28.088272530 +0000
|
|
|
|
+++ src/main/java/net/minecraft/server/BlockReed.java 2014-12-11 00:10:59.832273488 +0000
|
2014-11-25 22:32:16 +01:00
|
|
|
@@ -29,8 +29,13 @@
|
|
|
|
int j = ((Integer) iblockdata.get(BlockReed.AGE)).intValue();
|
|
|
|
|
|
|
|
if (j == 15) {
|
|
|
|
- world.setTypeUpdate(blockposition.up(), this.getBlockData());
|
|
|
|
+ // CraftBukkit start
|
|
|
|
+ // world.setTypeUpdate(blockposition.up(), this.getBlockData());
|
|
|
|
+ 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);
|
|
|
|
}
|