Don't extend pistons until data is set. Fixes BUKKIT-2153

This commit is contained in:
John Driscoll
2012-08-08 00:42:18 -07:00
committed by Wesley Wolfe
parent 050a9276bc
commit 0bde47a173
2 changed files with 6 additions and 2 deletions

View File

@@ -417,7 +417,11 @@ public class Chunk {
if (l != 0) {
if (!this.world.isStatic) {
Block.byId[l].onPlace(this.world, j2, j, k2);
// CraftBukkit start - Don't extend piston until data is set
if (!(Block.byId[l] instanceof BlockPiston) || i2 != 0) {
Block.byId[l].onPlace(this.world, j2, j, k2);
}
// CraftBukkit end
}
if (Block.byId[l] instanceof BlockContainer) {