diff options
author | Darkvater <darkvater@openttd.org> | 2005-09-11 18:36:22 +0000 |
---|---|---|
committer | Darkvater <darkvater@openttd.org> | 2005-09-11 18:36:22 +0000 |
commit | 02472528ad792238f03d28e907115030227bc5bc (patch) | |
tree | d8b1b8d48d1cd45b94b52560809e632762a4861a | |
parent | c5fa3848f69c4850bdcd896f8c2839cc5824dc0d (diff) | |
download | openttd-02472528ad792238f03d28e907115030227bc5bc.tar.xz |
(svn r2945) Add 'del' alias to rm console command
-rw-r--r-- | console_cmds.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/console_cmds.c b/console_cmds.c index 165fd7ce4..107b126a7 100644 --- a/console_cmds.c +++ b/console_cmds.c @@ -1295,6 +1295,7 @@ void IConsoleStdLibRegister(void) IConsoleCmdRegister("stopall", ConStopAllVehicles); IConsoleAliasRegister("dir", "ls"); + IConsoleAliasRegister("del", "rm %+"); IConsoleAliasRegister("newmap", "newgame"); IConsoleAliasRegister("new_map", "newgame"); IConsoleAliasRegister("new_game", "newgame"); |