diff options
Diffstat (limited to 'azalea/src/pathfinder/moves')
| -rw-r--r-- | azalea/src/pathfinder/moves/parkour.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/azalea/src/pathfinder/moves/parkour.rs b/azalea/src/pathfinder/moves/parkour.rs index d37c5751..c95d436b 100644 --- a/azalea/src/pathfinder/moves/parkour.rs +++ b/azalea/src/pathfinder/moves/parkour.rs @@ -239,7 +239,7 @@ fn execute_parkour_move(mut ctx: ExecuteCtx) { if !ctx.physics.on_ground() && ctx.physics.velocity.y.abs() < 0.1 { let should_sneak = { let world = ctx.world.read(); - let pos_above = ctx.position.up(1.62 + 0.3); + let pos_above = ctx.position.up(1.8 + 0.1); let block_pos_above = BlockPos::from(pos_above); let block_pos_above_plus_velocity = BlockPos::from(pos_above + ctx.physics.velocity.with_y(0.) * 4.); |
