diff --git a/common/src/sys/agent.rs b/common/src/sys/agent.rs index 2ae4b5ff2b..cf44c121fb 100644 --- a/common/src/sys/agent.rs +++ b/common/src/sys/agent.rs @@ -22,7 +22,7 @@ impl<'a> System<'a> for Sys { *bearing += Vec2::new( rand::random::().fract() - 0.5, rand::random::().fract() - 0.5, - ) - *bearing * 0.05 - pos.0 * 0.001; + ) * 0.1 - *bearing * 0.01 - pos.0 * 0.0002; if bearing.magnitude_squared() != 0.0 { control.move_dir = bearing.normalized();