aboutsummaryrefslogtreecommitdiff
path: root/server/bot/src
diff options
context:
space:
mode:
authormetamuffin <metamuffin@disroot.org>2025-10-23 19:13:43 +0200
committermetamuffin <metamuffin@disroot.org>2025-10-23 19:30:10 +0200
commita5f623ef1c415039a8fae4bacb9c0a5cc346619c (patch)
treeff27d8d6e38ae615c87ee1c8d9f3fe2c82168248 /server/bot/src
parentdc34f7f00f80cf001c207bcbb9182f58b3b10ac4 (diff)
downloadhurrycurry-a5f623ef1c415039a8fae4bacb9c0a5cc346619c.tar
hurrycurry-a5f623ef1c415039a8fae4bacb9c0a5cc346619c.tar.bz2
hurrycurry-a5f623ef1c415039a8fae4bacb9c0a5cc346619c.tar.zst
Boost bots after only .5s
Diffstat (limited to 'server/bot/src')
-rw-r--r--server/bot/src/step.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/server/bot/src/step.rs b/server/bot/src/step.rs
index f5f74f38..8f103cff 100644
--- a/server/bot/src/step.rs
+++ b/server/bot/src/step.rs
@@ -156,7 +156,7 @@ impl StepState {
out.push(PacketS::Movement {
player: self.me,
dir,
- boost: self.path.is_stuck(2.),
+ boost: self.path.is_stuck(0.5),
pos: None,
});
}