diff options
author | truelight <truelight@openttd.org> | 2004-12-23 17:12:30 +0000 |
---|---|---|
committer | truelight <truelight@openttd.org> | 2004-12-23 17:12:30 +0000 |
commit | e480efb19dc73986721591676580eb1a2296aec3 (patch) | |
tree | 559621c8a4f1c7cb1f6fd33af2a8f37b6032ee63 | |
parent | af13f489b9b532506a6f8697c138f276a27a55da (diff) | |
download | openttd-e480efb19dc73986721591676580eb1a2296aec3.tar.xz |
(svn r1251) -Fix: [Console] The alias 'clean_company' is now working correctly
-rw-r--r-- | console_cmds.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/console_cmds.c b/console_cmds.c index 4fdad2e59..36be8248f 100644 --- a/console_cmds.c +++ b/console_cmds.c @@ -960,7 +960,7 @@ void IConsoleStdLibRegister(void) IConsoleCmdHook("status", ICONSOLE_HOOK_ACCESS, ConCmdHookNoNetClient); IConsoleCmdHook("resetengines", ICONSOLE_HOOK_ACCESS, ConCmdHookNoNetwork); - IConsoleAliasRegister("clean_company", "reset_company"); + IConsoleAliasRegister("clean_company", "reset_company %A"); IConsoleVarRegister("net_frame_freq", &_network_frame_freq, ICONSOLE_VAR_UINT8); IConsoleVarHook("net_frame_freq", ICONSOLE_HOOK_ACCESS, ConVarHookNoNetClient); |