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

pull/155/head
rubidium 13 years ago
parent 195f81fb0a
commit 6f1bd8f8c9

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

Loading…
Cancel
Save