(svn r23230) -Codechange: stupid casing for UnPause. It's a single word, not two words "CamelCased" after eachother

This commit is contained in:
rubidium 2011-11-15 19:40:42 +00:00
parent 7ba37dd0fa
commit e97b747f5d
1 changed files with 2 additions and 2 deletions

View File

@ -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 %+");