From d7a053578d6364478c39568198384432e554744a Mon Sep 17 00:00:00 2001 From: rubidium Date: Sat, 7 Feb 2009 12:02:13 +0000 Subject: (svn r15395) -Fix [FS#2611] (r15377): one couldn't reset companies anymore in a 'dedicated' server. --- src/command_type.h | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) (limited to 'src/command_type.h') diff --git a/src/command_type.h b/src/command_type.h index f0f2b27a0..fbc0092e8 100644 --- a/src/command_type.h +++ b/src/command_type.h @@ -334,12 +334,13 @@ enum { * This enumeration defines flags for the _command_proc_table. */ enum { - CMD_SERVER = 0x01, ///< the command can only be initiated by the server - CMD_OFFLINE = 0x02, ///< the command cannot be executed in a multiplayer game; single-player only - CMD_AUTO = 0x04, ///< set the DC_AUTO flag on this command - CMD_NO_TEST = 0x08, ///< the command's output may differ between test and execute due to town rating changes etc. - CMD_NO_WATER = 0x10, ///< set the DC_NO_WATER flag on this command - CMD_ALL_TILES= 0x20, ///< allow this command also on MP_VOID tiles + CMD_SERVER = 0x01, ///< the command can only be initiated by the server + CMD_SPECTATOR = 0x02, ///< the command may be initiated by a spectator + CMD_OFFLINE = 0x04, ///< the command cannot be executed in a multiplayer game; single-player only + CMD_AUTO = 0x08, ///< set the DC_AUTO flag on this command + 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 }; /** -- cgit v1.2.3-54-g00ecf