summaryrefslogtreecommitdiff
path: root/src/order_type.h
diff options
context:
space:
mode:
authorrubidium <rubidium@openttd.org>2008-04-09 22:01:23 +0000
committerrubidium <rubidium@openttd.org>2008-04-09 22:01:23 +0000
commit73392ba85e0fd9148b91f97cb7a108b3eea8a638 (patch)
treea618ec500e29326d18b5b8410e43ffb4992c7603 /src/order_type.h
parent183145c0dccf20f0a3f2784dfed33547e5bed67a (diff)
downloadopenttd-73392ba85e0fd9148b91f97cb7a108b3eea8a638.tar.xz
(svn r12643) -Codechange: be more explicit about the orders a vehicle has (non stop and full load are ambiguous and depend on some patch settings).
Diffstat (limited to 'src/order_type.h')
-rw-r--r--src/order_type.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/order_type.h b/src/order_type.h
index 7e2548a08..415fcb9b4 100644
--- a/src/order_type.h
+++ b/src/order_type.h
@@ -43,6 +43,7 @@ enum OrderUnloadFlags {
OUF_UNLOAD_IF_POSSIBLE = 0, ///< Unload all cargo that the station accepts.
OUFB_TRANSFER = 1 << 0, ///< Transfer all cargo onto the platform.
OUFB_UNLOAD = 1 << 1, ///< Force unloading all cargo onto the platform, possibly not getting paid.
+ OUFB_NO_UNLOAD = 1 << 2, ///< Totally no unloading will be done.
};
/**