Changeset - r18384:41b54fed78cb
[Not reviewed]
master
0 1 0
rubidium - 13 years ago 2011-11-15 19:40:42
rubidium@openttd.org
(svn r23230) -Codechange: stupid casing for UnPause. It's a single word, not two words "CamelCased" after eachother
1 file changed with 2 insertions and 2 deletions:
0 comments (0 inline, 0 general)
src/console_cmds.cpp
Show inline comments
 
@@ -620,7 +620,7 @@ DEF_CONSOLE_CMD(ConPauseGame)
 
	return true;
 
}
 

	
 
DEF_CONSOLE_CMD(ConUnPauseGame)
 
DEF_CONSOLE_CMD(ConUnpauseGame)
 
{
 
	if (argc == 0) {
 
		IConsoleHelp("Unpause a network game. Usage: 'unpause'");
 
@@ -1936,7 +1936,7 @@ void IConsoleStdLibRegister()
 
	IConsoleCmdRegister("banlist",         ConBanList, ConHookServerOnly);
 

	
 
	IConsoleCmdRegister("pause",           ConPauseGame, ConHookServerOnly);
 
	IConsoleCmdRegister("unpause",         ConUnPauseGame, ConHookServerOnly);
 
	IConsoleCmdRegister("unpause",         ConUnpauseGame, ConHookServerOnly);
 

	
 
	IConsoleCmdRegister("company_pw",      ConCompanyPassword, ConHookNeedNetwork);
 
	IConsoleAliasRegister("company_password",      "company_pw %+");
0 comments (0 inline, 0 general)