summaryrefslogtreecommitdiff
path: root/console_cmds.c
diff options
context:
space:
mode:
authortruelight <truelight@openttd.org>2004-12-13 17:07:32 +0000
committertruelight <truelight@openttd.org>2004-12-13 17:07:32 +0000
commit382b924b41f1448ef5a843fd6ce07d31415afb99 (patch)
tree6ac4ac0e9c7141f952044a8f35f0d4058c5d66d0 /console_cmds.c
parentb153236503f3a93447592ec705a4c29ed4e1120e (diff)
downloadopenttd-382b924b41f1448ef5a843fd6ce07d31415afb99.tar.xz
(svn r1058) -Add: [Console] 3 aliases for newgame: new_game, newmap, new_map (this
annoyed me for some time now)
Diffstat (limited to 'console_cmds.c')
-rw-r--r--console_cmds.c3
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);