summaryrefslogtreecommitdiff
path: root/src/command_type.h
diff options
context:
space:
mode:
authorrubidium <rubidium@openttd.org>2012-01-09 22:21:45 +0000
committerrubidium <rubidium@openttd.org>2012-01-09 22:21:45 +0000
commit1a0fe0e8c63f99f912edfa7d39234cc71df41db9 (patch)
tree76f9c779f44fd2ecba4e151c7fe0ebd0afb9122b /src/command_type.h
parentf33f9b39208142c8b5e876dafe60a99ca3ea9b7a (diff)
downloadopenttd-1a0fe0e8c63f99f912edfa7d39234cc71df41db9.tar.xz
(svn r23783) -Cleanup: remove ancient but not needed command flag
Diffstat (limited to 'src/command_type.h')
-rw-r--r--src/command_type.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/command_type.h b/src/command_type.h
index 7308f76aa..35c05573b 100644
--- a/src/command_type.h
+++ b/src/command_type.h
@@ -345,7 +345,6 @@ DECLARE_ENUM_AS_BIT_SET(DoCommandFlag)
*/
enum FlaggedCommands {
CMD_NETWORK_COMMAND = 0x0100, ///< execute the command without sending it on the network
- CMD_NO_TEST_IF_IN_NETWORK = 0x0200, ///< When enabled, the command will bypass the no-DC_EXEC round if in network
CMD_FLAGS_MASK = 0xFF00, ///< mask for all command flags
CMD_ID_MASK = 0x00FF, ///< mask for the command ID
};