From c1e06e9e9c7b428d52d66bfecbecf883cc17aa37 Mon Sep 17 00:00:00 2001 From: Viet Dinh <54ckb0y789@gmail.com> Date: Wed, 8 Jul 2026 17:59:42 -0400 Subject: [PATCH] Fix animation control packet message --- server/handlers.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/handlers.go b/server/handlers.go index 1e560fb..81c646d 100644 --- a/server/handlers.go +++ b/server/handlers.go @@ -825,7 +825,7 @@ func (c *RoomClient) handleAnc(msg []string) error { return errors.New("invalid command") } - c.broadcast(buildMsg("anc", cmd)) + c.broadcast(buildMsg("anc", c.session.id, cmd)) return nil }