Mirror von
https://github.com/PaperMC/Paper.git
synchronisiert 2024-11-17 05:20:05 +01:00
Fixed not being able to move properly around doors or trapdoors
Dieser Commit ist enthalten in:
Ursprung
900c541246
Commit
bd93cd7182
@ -51,7 +51,7 @@ public class BlockDoor extends Block {
|
||||
}
|
||||
|
||||
public AxisAlignedBB e(World world, int i, int j, int k) {
|
||||
this.a(world, i, j, k);
|
||||
this.a((IBlockAccess)world, i, j, k); // CraftBukkit - Make sure this points to the below method!
|
||||
return super.e(world, i, j, k);
|
||||
}
|
||||
|
||||
|
@ -26,7 +26,7 @@ public class BlockTrapdoor extends Block {
|
||||
}
|
||||
|
||||
public AxisAlignedBB e(World world, int i, int j, int k) {
|
||||
this.a(world, i, j, k);
|
||||
this.a((IBlockAccess)world, i, j, k); // CraftBukkit - Make sure this points to the below method!
|
||||
return super.e(world, i, j, k);
|
||||
}
|
||||
|
||||
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren