# HG changeset patch # User truelight # Date 2004-12-13 17:07:32 # Node ID 2dd5d9b8b615ed4f400632349d051a71cafa35b4 # Parent f80a6630f065ad0438490f37cabe1a9739c7d484 (svn r1058) -Add: [Console] 3 aliases for newgame: new_game, newmap, new_map (this annoyed me for some time now) diff --git a/console_cmds.c b/console_cmds.c --- 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);