(svn r1058) -Add: [Console] 3 aliases for newgame: new_game, newmap, new_map (this
authortruelight
Mon, 13 Dec 2004 17:07:32 +0000
changeset 628 717b50d76e4b
parent 627 a78f58e07142
child 629 ce914eb4023d
(svn r1058) -Add: [Console] 3 aliases for newgame: new_game, newmap, new_map (this
annoyed me for some time now)
console_cmds.c
--- a/console_cmds.c	Mon Dec 13 17:04:41 2004 +0000
+++ b/console_cmds.c	Mon Dec 13 17:07:32 2004 +0000
@@ -740,6 +740,9 @@
 	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);