mirror of
https://github.com/PaperMC/Paper.git
synced 2024-11-09 20:30:28 +01:00
90ac03522a
This reverts commit d6e3dff7d8
.
19 lines
1.2 KiB
Diff
19 lines
1.2 KiB
Diff
--- ../work/decompile-8eb82bde//net/minecraft/server/BlockReed.java 2014-11-28 17:43:42.957707438 +0000
|
|
+++ src/main/java/net/minecraft/server/BlockReed.java 2014-11-28 17:38:18.000000000 +0000
|
|
@@ -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);
|
|
}
|