summaryrefslogtreecommitdiff
path: root/src/order_type.h
diff options
context:
space:
mode:
authorrubidium <rubidium@openttd.org>2008-04-10 10:18:03 +0000
committerrubidium <rubidium@openttd.org>2008-04-10 10:18:03 +0000
commit2964ba2d3498abf707f4ff6a135c6e6178d8b92f (patch)
treef1e81a713f50ffd83601dcff9cd89386c310bad6 /src/order_type.h
parent00d5b516bfb25cfa24e53df59d9ce12302b2bff4 (diff)
downloadopenttd-2964ba2d3498abf707f4ff6a135c6e6178d8b92f.tar.xz
(svn r12650) -Feature: ability to force a vehicle to not load at a station.
-Feature: ability to force a vehicle to not unload at a station.
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 24fd1fc20..b2d3ac67e 100644
--- a/src/order_type.h
+++ b/src/order_type.h
@@ -53,6 +53,7 @@ enum OrderLoadFlags {
OLF_LOAD_IF_POSSIBLE = 0, ///< Load as long as there is cargo that fits in the train.
OLFB_FULL_LOAD = 1 << 1, ///< Full load the complete the consist.
OLF_FULL_LOAD_ANY = 3, ///< Full load the a single cargo of the consist.
+ OLFB_NO_LOAD = 4, ///< Do not load anything.
};
/**