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 9af069bc9..2089cb760 100644 --- a/src/commands.h +++ b/src/commands.h @@ -52,7 +52,6 @@ struct CommandInfo final namespace Commands { decHandler(hack); - decHandler(undress); decHandler(attack); decHandler(dirs); decHandler(info); @@ -98,8 +97,7 @@ namespace Commands enum { - COMMAND_UNDRESS = 0, - COMMAND_ATTACK, + COMMAND_ATTACK = 0, COMMAND_DIRS, COMMAND_INFO, COMMAND_WAIT, @@ -145,7 +143,6 @@ enum static const CommandInfo commands[] = { - {"undress", &Commands::undress, -1, true}, {"attack", &Commands::attack, -1, true}, {"dirs", &Commands::dirs, -1, false}, {"info", &Commands::info, -1, false}, |