aboutsummaryrefslogtreecommitdiff
path: root/server/bot/src
diff options
context:
space:
mode:
authormetamuffin <metamuffin@disroot.org>2026-03-05 20:12:29 +0100
committermetamuffin <metamuffin@disroot.org>2026-03-05 20:12:30 +0100
commitee020802239f2b34a49266a5cee0d01effcdc62b (patch)
treeac6b5c393dc02fc8a8c4b03b256e7144f27a2bb3 /server/bot/src
parentc5b7f3ba5fb71cbf1ebf50e4ac58f29898586a6b (diff)
downloadhurrycurry-ee020802239f2b34a49266a5cee0d01effcdc62b.tar
hurrycurry-ee020802239f2b34a49266a5cee0d01effcdc62b.tar.bz2
hurrycurry-ee020802239f2b34a49266a5cee0d01effcdc62b.tar.zst
stop customer movement after entering
Diffstat (limited to 'server/bot/src')
-rw-r--r--server/bot/src/algos/customer.rs6
1 files changed, 6 insertions, 0 deletions
diff --git a/server/bot/src/algos/customer.rs b/server/bot/src/algos/customer.rs
index fdd911dc..d4284ea8 100644
--- a/server/bot/src/algos/customer.rs
+++ b/server/bot/src/algos/customer.rs
@@ -162,6 +162,12 @@ impl CustomerState {
} else {
requested_item
};
+ out.push(PacketS::Movement {
+ player: me,
+ boost: false,
+ dir: Vec2::ZERO,
+ pos: None,
+ });
out.push(PacketS::Communicate {
message: Some(Message::Item(message_item)),
timeout: Some(timeout),