summaryrefslogtreecommitdiffstats
path: root/nms-patches/BlockReed.patch
blob: 73321541a8bf9c6237df19ffb4542b90c0e2d6bb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
--- ../work/decompile-8eb82bde//net/minecraft/server/BlockReed.java	2014-11-28 11:22:55.770823167 +0000
+++ src/main/java/net/minecraft/server/BlockReed.java	2014-11-28 11:01:54.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);
                     }