diff options
author | Andrei Karas <akaras@inbox.ru> | 2014-08-27 02:33:48 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2014-08-27 02:33:48 +0300 |
commit | eade4818db87cc41e4c014688e5ee0d15ede6912 (patch) | |
tree | 422a84ea0dc5444fad986a75b6c783f83a111aec /src/commands.h | |
parent | 1b27066e2d98c82b0bf135188ebb57e16af669df (diff) | |
download | plus-eade4818db87cc41e4c014688e5ee0d15ede6912.tar.gz plus-eade4818db87cc41e4c014688e5ee0d15ede6912.tar.bz2 plus-eade4818db87cc41e4c014688e5ee0d15ede6912.tar.xz plus-eade4818db87cc41e4c014688e5ee0d15ede6912.zip |
Move chat command /dumpogl 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 7c74de94f..0a499bc5e 100644 --- a/src/commands.h +++ b/src/commands.h @@ -54,7 +54,6 @@ namespace Commands decHandler(hack); decHandler(url); decHandler(open); - decHandler(dumpOGL); decHandler(dumpGL); decHandler(dumpMods); decHandler(execute); @@ -80,8 +79,7 @@ namespace Commands enum { - COMMAND_DUMPOGL = 0, - COMMAND_DUMPGL, + COMMAND_DUMPGL = 0, COMMAND_DUMPMODS, COMMAND_URL, COMMAND_OPEN, @@ -108,7 +106,6 @@ enum static const CommandInfo commands[] = { - {"dumpogl", &Commands::dumpOGL, -1, false}, {"dumpgl", &Commands::dumpGL, -1, false}, {"dumpmods", &Commands::dumpMods, -1, false}, {"url", &Commands::url, -1, true}, |