diff options
author | Andrei Karas <akaras@inbox.ru> | 2014-08-27 13:18:28 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2014-08-27 13:18:28 +0300 |
commit | d53578d459fcc7fc9c5ab84a196c7f5a8238fc8e (patch) | |
tree | 8f83fc62a0bc58fef5a62bdb53e7bcf07f005a13 /src/commands.h | |
parent | 2981363fef524501a4a24a5f4c60661ebdee80fa (diff) | |
download | manaplus-d53578d459fcc7fc9c5ab84a196c7f5a8238fc8e.tar.gz manaplus-d53578d459fcc7fc9c5ab84a196c7f5a8238fc8e.tar.bz2 manaplus-d53578d459fcc7fc9c5ab84a196c7f5a8238fc8e.tar.xz manaplus-d53578d459fcc7fc9c5ab84a196c7f5a8238fc8e.zip |
Move chat command /url 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 cf2491476..6178b9d47 100644 --- a/src/commands.h +++ b/src/commands.h @@ -52,7 +52,6 @@ struct CommandInfo final namespace Commands { decHandler(hack); - decHandler(url); decHandler(open); decHandler(execute); decHandler(testsdlfont); @@ -77,8 +76,7 @@ namespace Commands enum { - COMMAND_URL = 0, - COMMAND_OPEN, + COMMAND_OPEN = 0, COMMAND_EXECUTE, COMMAND_TESTSDLFONT, COMMAND_ENABLEHIGHLIGHT, @@ -102,7 +100,6 @@ enum static const CommandInfo commands[] = { - {"url", &Commands::url, -1, true}, {"open", &Commands::open, -1, true}, {"execute", &Commands::execute, -1, true}, {"testsdlfont", &Commands::testsdlfont, -1, false}, |