SPIGOT-179: Fix the age counter not being reset for cacti and reeds

By: Thinkofdeath <thinkofdeath@spigotmc.org>
This commit is contained in:
CraftBukkit/Spigot
2014-12-11 00:13:27 +00:00
parent 4ff244c7c3
commit 755a5a33a8
2 changed files with 13 additions and 10 deletions

View File

@@ -1,5 +1,5 @@
--- ../work/decompile-8eb82bde//net/minecraft/server/BlockCactus.java 2014-11-28 17:43:42.877707440 +0000
+++ src/main/java/net/minecraft/server/BlockCactus.java 2014-11-28 17:38:18.000000000 +0000
--- ../work/decompile-8eb82bde/net/minecraft/server/BlockCactus.java 2014-12-11 00:12:27.888272532 +0000
+++ src/main/java/net/minecraft/server/BlockCactus.java 2014-12-11 00:10:42.528273676 +0000
@@ -3,6 +3,8 @@
import java.util.Iterator;
import java.util.Random;
@@ -9,13 +9,17 @@
public class BlockCactus extends Block {
public static final BlockStateInteger AGE = BlockStateInteger.of("age", 0, 15);
@@ -31,7 +33,8 @@
world.setTypeUpdate(blockposition1, this.getBlockData());
@@ -28,10 +30,11 @@
int j = ((Integer) iblockdata.get(BlockCactus.AGE)).intValue();
if (j == 15) {
- world.setTypeUpdate(blockposition1, this.getBlockData());
+ // world.setTypeUpdate(blockposition1, this.getBlockData());
IBlockData iblockdata1 = iblockdata.set(BlockCactus.AGE, Integer.valueOf(0));
- world.setTypeAndData(blockposition, iblockdata1, 4);
+ CraftEventFactory.handleBlockGrowEvent(world, blockposition1.getX(), blockposition1.getY(), blockposition1.getZ(), this, 0); // CraftBukkit
+ // world.setTypeAndData(blockposition, iblockdata1, 4); // CraftBukkit
+ world.setTypeAndData(blockposition, iblockdata1, 4); // CraftBukkit
this.doPhysics(world, blockposition1, iblockdata1, this);
} else {
world.setTypeAndData(blockposition, iblockdata.set(BlockCactus.AGE, Integer.valueOf(j + 1)), 4);