diff options
author | metamuffin <metamuffin@disroot.org> | 2024-06-26 21:27:40 +0200 |
---|---|---|
committer | metamuffin <metamuffin@disroot.org> | 2024-06-26 21:27:40 +0200 |
commit | e38a2ee78910edcec4425c07903e36fb5749ae3b (patch) | |
tree | 963b24ec9d73d98b46c1fff1bb6d10d043dc6285 /server/src | |
parent | 18e9409739ceefef970dd509709a1f7b0c1c15e4 (diff) | |
parent | cbe0201f67eaa751434786e23da3311761f5e776 (diff) | |
download | hurrycurry-e38a2ee78910edcec4425c07903e36fb5749ae3b.tar hurrycurry-e38a2ee78910edcec4425c07903e36fb5749ae3b.tar.bz2 hurrycurry-e38a2ee78910edcec4425c07903e36fb5749ae3b.tar.zst |
Merge branch 'master' of https://codeberg.org/metamuffin/undercooked
Diffstat (limited to 'server/src')
-rw-r--r-- | server/src/customer/movement.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/server/src/customer/movement.rs b/server/src/customer/movement.rs index a189ddce..c6350ebd 100644 --- a/server/src/customer/movement.rs +++ b/server/src/customer/movement.rs @@ -21,8 +21,8 @@ use std::collections::HashSet; const PLAYER_SIZE: f32 = 0.4; const PLAYER_FRICTION: f32 = 10.0; -const PLAYER_SPEED: f32 = 40.0; -const BOOST_FACTOR: f32 = 3.0; +const PLAYER_SPEED: f32 = 55.0; +const BOOST_FACTOR: f32 = 2.5; const BOOST_DURATION: f32 = 0.3; const BOOST_RESTORE: f32 = 0.5; |