Skip to content
Snippets Groups Projects
Commit 67bf7130 authored by Ilya Zhuravlev's avatar Ilya Zhuravlev
Browse files

Fix a bug in GenericCAO GENERIC_CMD_UPDATE_POSITION parsing.

parent d9ef0723
No related branches found
No related tags found
No related merge requests found
......@@ -1649,6 +1649,8 @@ class GenericCAO : public ClientActiveObject
m_acceleration = readV3F1000(is);
if(fabs(m_prop.automatic_rotate) < 0.001)
m_yaw = readF1000(is);
else
readF1000(is);
bool do_interpolate = readU8(is);
bool is_end_position = readU8(is);
float update_interval = readF1000(is);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment