1
0
Fork 0

(svn r1058) -Add: [Console] 3 aliases for newgame: new_game, newmap, new_map (this

annoyed me for some time now)
release/0.4.5
truelight 2004-12-13 17:07:32 +00:00
parent b153236503
commit 382b924b41
1 changed files with 3 additions and 0 deletions

View File

@ -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);