diff --git a/common/src/states/roll.rs b/common/src/states/roll.rs index 292f81c7b2..420f06cf0b 100644 --- a/common/src/states/roll.rs +++ b/common/src/states/roll.rs @@ -22,7 +22,7 @@ impl CharacterBehavior for Data { // Update velocity update.vel.0 = Vec3::new(0.0, 0.0, update.vel.0.z) + (update.vel.0 * Vec3::new(1.0, 1.0, 0.0) - + 1.5 * data.inputs.move_dir.try_normalized().unwrap_or_default()) + + 0.25 * data.inputs.move_dir.try_normalized().unwrap_or_default()) .try_normalized() .unwrap_or_default() * ROLL_SPEED;