diff options
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 7e675d642..9bad6c4ab 100644 --- a/src/commands.h +++ b/src/commands.h @@ -58,7 +58,6 @@ namespace Commands decHandler(error) __attribute__ ((noreturn)); decHandler(url); decHandler(open); - decHandler(dump); decHandler(dumpGraphics); decHandler(dumpEnvironment); decHandler(dumpTests); @@ -88,8 +87,7 @@ namespace Commands enum { - COMMAND_DUMP = 0, - COMMAND_SERVERIGNOREALL, + COMMAND_SERVERIGNOREALL = 0, COMMAND_SERVERUNIGNOREALL, COMMAND_SETDROP, COMMAND_ERROR, @@ -124,7 +122,6 @@ enum static const CommandInfo commands[] = { - {"dump", &Commands::dump, -1, false}, {"serverignoreall", &Commands::serverIgnoreAll, -1, false}, {"serverunignoreall", &Commands::serverUnIgnoreAll, -1, false}, {"setdrop", &Commands::setDrop, -1, true}, |