(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 dfeef108b900
parent 627 5495f77a0e7c
child 629 4bb1f0fb0109
(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);