Add missing movement ACK responses to avoid server stalls

Implement generic handlers for force speed changes (walk, run back,
swim, swim back, flight, flight back, turn rate, pitch rate),
movement flag toggles (CAN_FLY, HOVER, feather fall, water walk),
and knockback ACKs. Fix SMSG_TIME_SYNC_REQ to respond with
CMSG_TIME_SYNC_RESP instead of silently dropping.
This commit is contained in:
Kelsi 2026-02-26 03:02:51 -08:00
parent 923260c90c
commit 1c07e87b7e
3 changed files with 199 additions and 14 deletions

View file

@ -399,6 +399,7 @@ enum class MovementFlags : uint32_t {
ASCENDING = 0x00400000,
CAN_FLY = 0x00800000,
FLYING = 0x01000000,
HOVER = 0x02000000,
};
/**