diff --git a/strafe-client/src/physics.rs b/strafe-client/src/physics.rs index ecde420..4621cc5 100644 --- a/strafe-client/src/physics.rs +++ b/strafe-client/src/physics.rs @@ -1843,7 +1843,7 @@ fn atomic_input_instruction(state:&mut PhysicsState,data:&PhysicsData,ins:TimedI let jump_dir=walk_state.jump_direction.direction(&data.models,&data.hitbox_mesh,&walk_state.contact); let booster_option=data.models.contact_attr(walk_state.contact.model_id).general.booster.as_ref(); let jumped_velocity=jump_settings.jumped_velocity(&state.style,jump_dir,state.body.velocity,booster_option); - state.cull_velocity(&data,jumped_velocity); + state.cull_velocity(data,jumped_velocity); } } b_refresh_walk_target=false;