mirror of
https://github.com/PaperMC/Paper.git
synced 2025-01-10 03:52:45 +01:00
a419776f3c
For more information please see http://www.spigotmc.org/ By: Thinkofdeath <thinkofdeath@spigotmc.org>
18 lines
1.2 KiB
Diff
18 lines
1.2 KiB
Diff
--- ../work/decompile-bb26c12b/net/minecraft/server/BlockReed.java 2014-11-27 08:59:46.569422428 +1100
|
|
+++ src/main/java/net/minecraft/server/BlockReed.java 2014-11-27 08:42:10.120850973 +1100
|
|
@@ -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);
|
|
}
|