diff options
author | truelight <truelight@openttd.org> | 2004-12-13 17:07:32 +0000 |
---|---|---|
committer | truelight <truelight@openttd.org> | 2004-12-13 17:07:32 +0000 |
commit | 382b924b41f1448ef5a843fd6ce07d31415afb99 (patch) | |
tree | 6ac4ac0e9c7141f952044a8f35f0d4058c5d66d0 | |
parent | b153236503f3a93447592ec705a4c29ed4e1120e (diff) | |
download | openttd-382b924b41f1448ef5a843fd6ce07d31415afb99.tar.xz |
(svn r1058) -Add: [Console] 3 aliases for newgame: new_game, newmap, new_map (this
annoyed me for some time now)
-rw-r--r-- | console_cmds.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/console_cmds.c b/console_cmds.c index 3f7f57d2b..d344d8e95 100644 --- a/console_cmds.c +++ b/console_cmds.c @@ -740,6 +740,9 @@ void IConsoleStdLibRegister(void) IConsoleCmdRegister("list_cmds", ConListCommands); IConsoleCmdRegister("list_vars", ConListVariables); IConsoleCmdRegister("newgame", ConNewGame); + IConsoleCmdRegister("new_game", ConNewGame); + IConsoleCmdRegister("newmap", ConNewGame); + IConsoleCmdRegister("new_map", ConNewGame); IConsoleCmdRegister("printf", ConPrintF); IConsoleCmdRegister("printfc", ConPrintFC); IConsoleCmdRegister("quit", ConExit); |