diff options
author | Andrei Karas <akaras@inbox.ru> | 2014-08-27 12:32:16 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2014-08-27 12:32:16 +0300 |
commit | 7c87b2ac8e01307e603bd85420f8d10724a296e6 (patch) | |
tree | a653847183daa2bcb64f90d37893f549a2bcb6df /src/commands.h | |
parent | eade4818db87cc41e4c014688e5ee0d15ede6912 (diff) | |
download | plus-7c87b2ac8e01307e603bd85420f8d10724a296e6.tar.gz plus-7c87b2ac8e01307e603bd85420f8d10724a296e6.tar.bz2 plus-7c87b2ac8e01307e603bd85420f8d10724a296e6.tar.xz plus-7c87b2ac8e01307e603bd85420f8d10724a296e6.zip |
Move chat command /dumpgl 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 0a499bc5e..6c209f4a4 100644 --- a/src/commands.h +++ b/src/commands.h @@ -54,7 +54,6 @@ namespace Commands decHandler(hack); decHandler(url); decHandler(open); - decHandler(dumpGL); decHandler(dumpMods); decHandler(execute); decHandler(testsdlfont); @@ -79,8 +78,7 @@ namespace Commands enum { - COMMAND_DUMPGL = 0, - COMMAND_DUMPMODS, + COMMAND_DUMPMODS = 0, COMMAND_URL, COMMAND_OPEN, COMMAND_EXECUTE, @@ -106,7 +104,6 @@ enum static const CommandInfo commands[] = { - {"dumpgl", &Commands::dumpGL, -1, false}, {"dumpmods", &Commands::dumpMods, -1, false}, {"url", &Commands::url, -1, true}, {"open", &Commands::open, -1, true}, |