summaryrefslogtreecommitdiff
path: root/src/order_type.h
diff options
context:
space:
mode:
authorrubidium <rubidium@openttd.org>2008-04-09 18:26:19 +0000
committerrubidium <rubidium@openttd.org>2008-04-09 18:26:19 +0000
commit82155367f6118c0a43a74eb842cf25b23d143d49 (patch)
treeddb520943c26dd780e20324992cfd08a769fb197 /src/order_type.h
parentd1783459473251e2d7f392a3013fe6a8bbef4316 (diff)
downloadopenttd-82155367f6118c0a43a74eb842cf25b23d143d49.tar.xz
(svn r12640) -Codechange: let GetLoadType make a difference between full load and full load any based on the patch setting instead of using the patch setting directly.
Diffstat (limited to 'src/order_type.h')
-rw-r--r--src/order_type.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/order_type.h b/src/order_type.h
index 1ebbbdc35..7e2548a08 100644
--- a/src/order_type.h
+++ b/src/order_type.h
@@ -50,7 +50,8 @@ enum OrderUnloadFlags {
*/
enum OrderLoadFlags {
OLF_LOAD_IF_POSSIBLE = 0, ///< Load as long as there is cargo that fits in the train.
- OLFB_FULL_LOAD = 1 << 2, ///< Full load the complete (or a single cargo) of the consist.
+ OLFB_FULL_LOAD = 1 << 2, ///< Full load the complete the consist.
+ OLF_FULL_LOAD_ANY = 5, ///< Full load the a single cargo of the consist.
};
/**