diff options
Diffstat (limited to 'src/game/PointMovementGenerator.h')
-rw-r--r-- | src/game/PointMovementGenerator.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/game/PointMovementGenerator.h b/src/game/PointMovementGenerator.h index 6dfb1d6f8ec..7551e3827b4 100644 --- a/src/game/PointMovementGenerator.h +++ b/src/game/PointMovementGenerator.h @@ -45,9 +45,9 @@ class TRINITY_DLL_SPEC PointMovementGenerator bool GetDestination(float& x, float& y, float& z) const { x=i_x; y=i_y; z=i_z; return true; } private: - TimeTracker i_nextMoveTime; - float i_x,i_y,i_z; uint32 id; + float i_x,i_y,i_z; + TimeTracker i_nextMoveTime; DestinationHolder< Traveller<T> > i_destinationHolder; bool arrived; }; |