summaryrefslogtreecommitdiff
path: root/src/command_type.h
diff options
context:
space:
mode:
authorrubidium <rubidium@openttd.org>2010-08-18 17:06:45 +0000
committerrubidium <rubidium@openttd.org>2010-08-18 17:06:45 +0000
commit69fa0b36d3bb043858621ac0b32d451674ed2719 (patch)
treef345c20f27f03cdc6e8fa9b7ddd0803739a83c96 /src/command_type.h
parent287ee8c01d900ef15bd434e61607c0f341ec2d7e (diff)
downloadopenttd-69fa0b36d3bb043858621ac0b32d451674ed2719.tar.xz
(svn r20542) -Codechange: generalise the setting of "p2" to the ClientID.
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 35e2b665a..5d2d892fe 100644
--- a/src/command_type.h
+++ b/src/command_type.h
@@ -332,6 +332,7 @@ enum CommandFlags {
CMD_ALL_TILES = 0x10, ///< allow this command also on MP_VOID tiles
CMD_NO_TEST = 0x20, ///< the command's output may differ between test and execute due to town rating changes etc.
CMD_NO_WATER = 0x40, ///< set the DC_NO_WATER flag on this command
+ CMD_CLIENT_ID = 0x80, ///< set p2 with the ClientID of the sending client.
};
/**