diff options
| author | metamuffin <metamuffin@disroot.org> | 2025-10-23 19:13:43 +0200 |
|---|---|---|
| committer | metamuffin <metamuffin@disroot.org> | 2025-10-23 19:30:10 +0200 |
| commit | a5f623ef1c415039a8fae4bacb9c0a5cc346619c (patch) | |
| tree | ff27d8d6e38ae615c87ee1c8d9f3fe2c82168248 /server/bot/src | |
| parent | dc34f7f00f80cf001c207bcbb9182f58b3b10ac4 (diff) | |
| download | hurrycurry-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.rs | 2 |
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, }); } |