summaryrefslogtreecommitdiff
path: root/src/command_type.h
diff options
context:
space:
mode:
authorrubidium <rubidium@openttd.org>2009-01-07 13:31:09 +0000
committerrubidium <rubidium@openttd.org>2009-01-07 13:31:09 +0000
commitd66d36126c4ed7cd4eef91b61174491427bb0322 (patch)
tree7011a2d9402cf9cedf627d6a25981e5442acd020 /src/command_type.h
parentcb81e637b08ff960af2a532f9e0d2ec0a2e1736c (diff)
downloadopenttd-d66d36126c4ed7cd4eef91b61174491427bb0322.tar.xz
(svn r14890) -Codechange: move the notest information into the command table.
Diffstat (limited to 'src/command_type.h')
-rw-r--r--src/command_type.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/command_type.h b/src/command_type.h
index 59e472563..19d3452a7 100644
--- a/src/command_type.h
+++ b/src/command_type.h
@@ -341,6 +341,7 @@ enum {
CMD_SERVER = 0x1, ///< the command can only be initiated by the server
CMD_OFFLINE = 0x2, ///< the command cannot be executed in a multiplayer game; single-player only
CMD_AUTO = 0x4, ///< set the DC_AUTO flag on this command
+ CMD_NO_TEST = 0x8, ///< the command's output may differ between test and execute due to town rating changes etc.
};
/**