diff options
Diffstat (limited to 'src/order.h')
-rw-r--r-- | src/order.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/order.h b/src/order.h index 7d14d6c15..64d39d586 100644 --- a/src/order.h +++ b/src/order.h @@ -89,12 +89,12 @@ enum { * - REF_SHEDULE (all REFs are currently limited to 16 bits!!) */ typedef struct Order { + struct Order *next; ///< Pointer to next order. If NULL, end of list + OrderTypeByte type; uint8 flags; DestinationID dest; ///< The destionation of the order. - struct Order *next; ///< Pointer to next order. If NULL, end of list - OrderID index; ///< Index of the order, is not saved or anything, just for reference CargoID refit_cargo; // Refit CargoID |