summaryrefslogtreecommitdiff
path: root/order.h
diff options
context:
space:
mode:
authorcelestar <celestar@openttd.org>2005-06-15 16:58:15 +0000
committercelestar <celestar@openttd.org>2005-06-15 16:58:15 +0000
commitc7de8340593e074502ab503224765cbba502ec1a (patch)
tree2eb137bb1707e901e92c6b76b07fab582068ccbc /order.h
parent15b0c3b4696e6a78d003861c92f1c20fd3866842 (diff)
downloadopenttd-c7de8340593e074502ab503224765cbba502ec1a.tar.xz
(svn r2441) -Feature: You can now give transfer order to set up feeder systems
Diffstat (limited to 'order.h')
-rw-r--r--order.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/order.h b/order.h
index 5bce2bcde..79a66cf6e 100644
--- a/order.h
+++ b/order.h
@@ -19,6 +19,7 @@ enum {
/* Order flag masks - these are for direct bit operations */
enum {
//Flags for stations:
+ OF_TRANSFER = 0x1,
OF_UNLOAD = 0x2,
OF_FULL_LOAD = 0x4, // Also used when to force an aircraft into a depot
@@ -32,6 +33,7 @@ enum {
/* Order flags bits - these are for the *BIT macros */
enum {
+ OFB_TRANSFER = 0,
OFB_UNLOAD = 1,
OFB_FULL_LOAD = 2,
OFB_PART_OF_ORDERS = 1,