diff options
author | Andrei Karas <akaras@inbox.ru> | 2014-08-25 22:29:29 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2014-08-25 22:29:29 +0300 |
commit | 3a091245572872f5cda79eab92eb392f92c02b39 (patch) | |
tree | 512e1b815194d865f67714542ab076411e084f32 /src/commands.h | |
parent | 10029599ee4cb4c26531303ab0e07cedc856f1ad (diff) | |
download | manaplus-3a091245572872f5cda79eab92eb392f92c02b39.tar.gz manaplus-3a091245572872f5cda79eab92eb392f92c02b39.tar.bz2 manaplus-3a091245572872f5cda79eab92eb392f92c02b39.tar.xz manaplus-3a091245572872f5cda79eab92eb392f92c02b39.zip |
Move chat command /move 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 41b2231c8..71c11113f 100644 --- a/src/commands.h +++ b/src/commands.h @@ -51,7 +51,6 @@ struct CommandInfo final namespace Commands { - decHandler(move); decHandler(target); decHandler(attackHuman); decHandler(outfit); @@ -116,8 +115,7 @@ namespace Commands enum { - COMMAND_MOVE = 0, - COMMAND_TARGET, + COMMAND_TARGET = 0, COMMAND_ATKHUMAN, COMMAND_OUTFIT, COMMAND_EMOTE, @@ -181,7 +179,6 @@ enum static const CommandInfo commands[] = { - {"move", &Commands::move, -1, true}, {"target", &Commands::target, -1, true}, {"atkhuman", &Commands::attackHuman, -1, true}, {"outfit", &Commands::outfit, -1, true}, |