From a030f6aaad79a5319c9a564f045d687f030ac142 Mon Sep 17 00:00:00 2001 From: tomrus88 Date: Mon, 15 Mar 2010 14:56:03 +0300 Subject: [PATCH] How this happened? --- src/game/Unit.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/game/Unit.cpp b/src/game/Unit.cpp index 434f6ec25..a79a3facc 100644 --- a/src/game/Unit.cpp +++ b/src/game/Unit.cpp @@ -94,7 +94,7 @@ void MovementInfo::Read(ByteBuffer &data) data >> t_time; data >> t_seat; - if(moveFlags2 & MOVEFLAG2_UNK1) + if(moveFlags2 & MOVEFLAG2_INTERP_MOVEMENT) data >> t_time2; } @@ -139,7 +139,7 @@ void MovementInfo::Write(ByteBuffer &data) const data << t_time; data << t_seat; - if(moveFlags2 & MOVEFLAG2_UNK1) + if(moveFlags2 & MOVEFLAG2_INTERP_MOVEMENT) data << t_time2; }