diff options
author | rubidium <rubidium@openttd.org> | 2011-11-15 19:40:42 +0000 |
---|---|---|
committer | rubidium <rubidium@openttd.org> | 2011-11-15 19:40:42 +0000 |
commit | e97b747f5d5e80f4b5153e2c1244f6bfb1dc9625 (patch) | |
tree | 68975d5855c91931dd5150c91de7367926249c41 /src | |
parent | 7ba37dd0fad6c3ccb0b4ff212b642b57525a21db (diff) | |
download | openttd-e97b747f5d5e80f4b5153e2c1244f6bfb1dc9625.tar.xz |
(svn r23230) -Codechange: stupid casing for UnPause. It's a single word, not two words "CamelCased" after eachother
Diffstat (limited to 'src')
-rw-r--r-- | src/console_cmds.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/console_cmds.cpp b/src/console_cmds.cpp index 85731de43..6b44b455e 100644 --- a/src/console_cmds.cpp +++ b/src/console_cmds.cpp @@ -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 %+"); |