diff options
Diffstat (limited to 'src/order_base.h')
-rw-r--r-- | src/order_base.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/order_base.h b/src/order_base.h index b592aa2d5..b0c77b956 100644 --- a/src/order_base.h +++ b/src/order_base.h @@ -28,6 +28,7 @@ private: friend const struct SaveLoad *GetOrderDescription(); ///< Saving and loading of orders. OrderTypeByte type; ///< The type of order + uint8 flags; ///< 'Sub'type of order DestinationID dest; ///< The destination of the order. CargoID refit_cargo; ///< Refit CargoID @@ -36,8 +37,6 @@ private: public: Order *next; ///< Pointer to next order. If NULL, end of list - uint8 flags; ///< 'Sub'type of order - uint16 wait_time; ///< How long in ticks to wait at the destination. uint16 travel_time; ///< How long in ticks the journey to this destination should take. |