Changeset - r17266:fd37372a3e14
[Not reviewed]
master
0 2 0
rubidium - 14 years ago 2011-02-07 22:23:37
rubidium@openttd.org
(svn r22016) -Fix [FS#4479]: when paused and having the allowed actions while paused setting on "no actions" cheating money would fail
2 files changed with 3 insertions and 1 deletions:
0 comments (0 inline, 0 general)
src/command.cpp
Show inline comments
 
@@ -272,7 +272,7 @@ static const Command _command_proc_table
 

	
 
	DEF_CMD(CmdClearArea,                            CMD_NO_TEST, CMDT_LANDSCAPE_CONSTRUCTION), // CMD_CLEAR_AREA; destroying multi-tile houses makes town rating differ between test and execution
 

	
 
	DEF_CMD(CmdMoneyCheat,                           CMD_OFFLINE, CMDT_MONEY_MANAGEMENT      ), // CMD_MONEY_CHEAT
 
	DEF_CMD(CmdMoneyCheat,                           CMD_OFFLINE, CMDT_CHEAT                 ), // CMD_MONEY_CHEAT
 
	DEF_CMD(CmdBuildCanal,                              CMD_AUTO, CMDT_LANDSCAPE_CONSTRUCTION), // CMD_BUILD_CANAL
 
	DEF_CMD(CmdCompanyCtrl,        CMD_SPECTATOR | CMD_CLIENT_ID, CMDT_SERVER_SETTING        ), // CMD_COMPANY_CTRL
 

	
 
@@ -365,6 +365,7 @@ bool IsCommandAllowedWhilePaused(uint32 
 
		CMDPL_NO_CONSTRUCTION, ///< CMDT_OTHER_MANAGEMENT
 
		CMDPL_NO_CONSTRUCTION, ///< CMDT_COMPANY_SETTING
 
		CMDPL_NO_ACTIONS,      ///< CMDT_SERVER_SETTING
 
		CMDPL_NO_ACTIONS,      ///< CMDT_CHEAT
 
	};
 
	assert_compile(lengthof(command_type_lookup) == CMDT_END);
 

	
src/command_type.h
Show inline comments
 
@@ -343,6 +343,7 @@ enum CommandType {
 
	CMDT_OTHER_MANAGEMENT,       ///< Renaming stuff, changing company colours, placing signs, etc.
 
	CMDT_COMPANY_SETTING,        ///< Changing settings related to a company.
 
	CMDT_SERVER_SETTING,         ///< Pausing/removing companies/server settings.
 
	CMDT_CHEAT,                  ///< A cheat of some sorts.
 

	
 
	CMDT_END,                    ///< Magic end marker.
 
};
0 comments (0 inline, 0 general)