3
0
Mirror von https://github.com/PaperMC/Paper.git synchronisiert 2024-12-18 04:20:08 +01:00

SPIGOT-1975: Fix falling blocks when height > 1

Dieser Commit ist enthalten in:
md_5 2016-03-22 18:04:02 +11:00
Ursprung d4e50bef9d
Commit 616a9687a1

Datei anzeigen

@ -18,6 +18,15 @@
this.world.setAir(blockposition);
} else if (!this.world.isClientSide) {
this.die();
@@ -84,7 +86,7 @@
if (BlockFalling.i(this.world.getType(new BlockPosition(this.locX, this.locY - 0.009999999776482582D, this.locZ)))) {
this.onGround = false;
- return;
+ // return; // CraftBukkit
}
this.motX *= 0.699999988079071D;
@@ -93,7 +95,13 @@
if (iblockdata.getBlock() != Blocks.PISTON_EXTENSION) {
this.die();