3
0
Mirror von https://github.com/PaperMC/Paper.git synchronisiert 2024-11-16 04:50:05 +01:00

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

Dieser Commit ist enthalten in:
John Driscoll 2012-08-08 00:42:18 -07:00 committet von Wesley Wolfe
Ursprung 050a9276bc
Commit 0bde47a173
2 geänderte Dateien mit 6 neuen und 2 gelöschten Zeilen

Datei anzeigen

@ -55,7 +55,7 @@ public class BlockPiston extends Block {
public void onPlace(World world, int i, int j, int k) {
if (!world.isStatic && world.getTileEntity(i, j, k) == null) {
// this.l(world, i, j, k); // CraftBukkit - don't extend arm of piston that doesn't exist
this.l(world, i, j, k);
}
}

Datei anzeigen

@ -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) {