diff options
author | Andrei Karas <akaras@inbox.ru> | 2014-08-24 21:38:45 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2014-08-24 21:38:45 +0300 |
commit | 4805bee18392b56f39be68b0d6a0384cbda0f846 (patch) | |
tree | 7ccbc3892df6665667361da56e3d3abbdd1bcc7a /src/commands.h | |
parent | 9522e88dbdb425211f68e94518dcfb63dc74f306 (diff) | |
download | mv-4805bee18392b56f39be68b0d6a0384cbda0f846.tar.gz mv-4805bee18392b56f39be68b0d6a0384cbda0f846.tar.bz2 mv-4805bee18392b56f39be68b0d6a0384cbda0f846.tar.xz mv-4805bee18392b56f39be68b0d6a0384cbda0f846.zip |
Move chat command /enemy 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 8ca68ece0..a017eb2ac 100644 --- a/src/commands.h +++ b/src/commands.h @@ -59,7 +59,6 @@ namespace Commands decHandler(me); decHandler(toggle); decHandler(present); - decHandler(enemy); decHandler(erase); decHandler(quit); decHandler(showAll); @@ -128,8 +127,7 @@ namespace Commands enum { - COMMAND_ENEMY = 0, - COMMAND_ERASE, + COMMAND_ERASE = 0, COMMAND_CLEANGRAPHICS, COMMAND_CLEANFONTS, COMMAND_CREATEPARTY, @@ -205,7 +203,6 @@ enum static const CommandInfo commands[] = { - {"enemy", &Commands::enemy, -1, true}, {"erase", &Commands::erase, -1, true}, {"cleangraphics", &Commands::cleanGraphics, -1, false}, {"cleanfonts", &Commands::cleanFonts, -1, false}, |