diff options
author | Andrei Karas <akaras@inbox.ru> | 2014-08-26 20:53:04 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2014-08-26 20:53:04 +0300 |
commit | 67ecfd5dc5ac6b45e42f6a47263f494fa17bc46d (patch) | |
tree | 912d2741d258a32f966d5cbb984a5865a5492783 /src/commands.h | |
parent | a4077c474c370275442982965bb174b2e1e59422 (diff) | |
download | plus-67ecfd5dc5ac6b45e42f6a47263f494fa17bc46d.tar.gz plus-67ecfd5dc5ac6b45e42f6a47263f494fa17bc46d.tar.bz2 plus-67ecfd5dc5ac6b45e42f6a47263f494fa17bc46d.tar.xz plus-67ecfd5dc5ac6b45e42f6a47263f494fa17bc46d.zip |
Move chat command /dirs into actions.
Diffstat (limited to 'src/commands.h')
-rw-r--r-- | src/commands.h | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/commands.h b/src/commands.h index 5dde98d8f..d5c7b2e35 100644 --- a/src/commands.h +++ b/src/commands.h @@ -52,7 +52,6 @@ struct CommandInfo final namespace Commands { decHandler(hack); - decHandler(dirs); decHandler(info); decHandler(wait); decHandler(uptime); @@ -96,8 +95,7 @@ namespace Commands enum { - COMMAND_DIRS = 0, - COMMAND_INFO, + COMMAND_INFO = 0, COMMAND_WAIT, COMMAND_UPTIME, COMMAND_ADDPRIORITYATTACK, @@ -141,7 +139,6 @@ enum static const CommandInfo commands[] = { - {"dirs", &Commands::dirs, -1, false}, {"info", &Commands::info, -1, false}, {"wait", &Commands::wait, -1, true}, {"uptime", &Commands::uptime, -1, false}, |