diff options
author | metamuffin <metamuffin@disroot.org> | 2024-07-20 17:05:33 +0200 |
---|---|---|
committer | metamuffin <metamuffin@disroot.org> | 2024-07-20 17:05:33 +0200 |
commit | f8c73c6fd8643deac086305f7e38c275a442c0af (patch) | |
tree | 3b78bf36d2bd549510f2dff661cb43cdb9afe608 /server/protocol/src | |
parent | cb9f35eb2fd1a7a17a397199d26a17d61988b39c (diff) | |
download | hurrycurry-f8c73c6fd8643deac086305f7e38c275a442c0af.tar hurrycurry-f8c73c6fd8643deac086305f7e38c275a442c0af.tar.bz2 hurrycurry-f8c73c6fd8643deac086305f7e38c275a442c0af.tar.zst |
increase friction to 15
Diffstat (limited to 'server/protocol/src')
-rw-r--r-- | server/protocol/src/movement.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/server/protocol/src/movement.rs b/server/protocol/src/movement.rs index 76a243e2..286c7f6a 100644 --- a/server/protocol/src/movement.rs +++ b/server/protocol/src/movement.rs @@ -22,7 +22,7 @@ use crate::{ use std::collections::HashSet; const PLAYER_SIZE: f32 = 0.4; -const PLAYER_FRICTION: f32 = 10.0; +const PLAYER_FRICTION: f32 = 15.0; const PLAYER_SPEED: f32 = 55.0; const BOOST_FACTOR: f32 = 2.5; const BOOST_DURATION: f32 = 0.3; |