Revert Fix For Player Movement (attempted to fix smoothing and animation restart issues, suspecting client bug)

This commit is contained in:
Alan Moon 2026-09-04 13:13:46 -07:00
parent bd7b96627f
commit 9e9b2ef472

View File

@ -72,6 +72,6 @@ class SetPositionVariablesHandler : CommandHandler {
cmd.Add("p", obj); cmd.Add("p", obj);
NetworkPacket packet = NetworkObject.WrapObject(1, 13, cmd).Serialize(); NetworkPacket packet = NetworkObject.WrapObject(1, 13, cmd).Serialize();
client.Room?.Send(packet, client); client.Room?.Send(packet, client, true);
} }
} }