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 920499582..c5104ee5c 100644 --- a/src/commands.h +++ b/src/commands.h @@ -52,7 +52,6 @@ struct CommandInfo final namespace Commands { decHandler(hack); - decHandler(wait); decHandler(uptime); decHandler(addAttack); decHandler(addPriorityAttack); @@ -94,8 +93,7 @@ namespace Commands enum { - COMMAND_WAIT = 0, - COMMAND_UPTIME, + COMMAND_UPTIME = 0, COMMAND_ADDPRIORITYATTACK, COMMAND_ADDATTACK, COMMAND_REMOVEATTACK, @@ -137,7 +135,6 @@ enum static const CommandInfo commands[] = { - {"wait", &Commands::wait, -1, true}, {"uptime", &Commands::uptime, -1, false}, {"addpriorityattack", &Commands::addPriorityAttack, -1, true}, {"addattack", &Commands::addAttack, -1, true}, |