aboutsummaryrefslogtreecommitdiff
path: root/server/src/customer/movement.rs
diff options
context:
space:
mode:
authormetamuffin <metamuffin@disroot.org>2024-06-23 14:43:23 +0200
committermetamuffin <metamuffin@disroot.org>2024-06-23 19:32:37 +0200
commit85e478653a308d05884db8a0c69ac2d0dcda21eb (patch)
treee425b5b1e45933b07f45973c257d5922654d78a6 /server/src/customer/movement.rs
parent267869f2d3dcf762a3db4dbc885f6b90a9a4ad41 (diff)
downloadhurrycurry-85e478653a308d05884db8a0c69ac2d0dcda21eb.tar
hurrycurry-85e478653a308d05884db8a0c69ac2d0dcda21eb.tar.bz2
hurrycurry-85e478653a308d05884db8a0c69ac2d0dcda21eb.tar.zst
prevent too far interact
Diffstat (limited to 'server/src/customer/movement.rs')
-rw-r--r--server/src/customer/movement.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/server/src/customer/movement.rs b/server/src/customer/movement.rs
index a4b039e2..c637a17f 100644
--- a/server/src/customer/movement.rs
+++ b/server/src/customer/movement.rs
@@ -4,7 +4,7 @@ use std::collections::HashSet;
const PLAYER_SIZE: f32 = 0.4;
const PLAYER_SPEED: f32 = 25.;
-pub const PLAYER_SPEED_LIMIT: f32 = 8.;
+pub const PLAYER_SPEED_LIMIT: f32 = 10.;
pub struct MovementBase {
pub position: Vec2,