summaryrefslogtreecommitdiff
path: root/src/commands.h
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2014-08-25 13:10:52 +0300
committerAndrei Karas <akaras@inbox.ru>2014-08-25 13:10:52 +0300
commitb063ffa91bbeb324568ae84cde9a90fbb28797f7 (patch)
tree26d6be637bde193829ce4e6ccb7d17e4c0ab6d1a /src/commands.h
parente62706843143949918653a03cc0cbf6620687a60 (diff)
downloadplus-b063ffa91bbeb324568ae84cde9a90fbb28797f7.tar.gz
plus-b063ffa91bbeb324568ae84cde9a90fbb28797f7.tar.bz2
plus-b063ffa91bbeb324568ae84cde9a90fbb28797f7.tar.xz
plus-b063ffa91bbeb324568ae84cde9a90fbb28797f7.zip
Move chat command /createguild into actions.
Diffstat (limited to 'src/commands.h')
-rw-r--r--src/commands.h5
1 files changed, 1 insertions, 4 deletions
diff --git a/src/commands.h b/src/commands.h
index f1b6f2e5a..89dd71c45 100644
--- a/src/commands.h
+++ b/src/commands.h
@@ -51,7 +51,6 @@ struct CommandInfo final
namespace Commands
{
- decHandler(createGuild);
decHandler(party);
decHandler(me);
decHandler(toggle);
@@ -123,8 +122,7 @@ namespace Commands
enum
{
- COMMAND_CREATEGUILD = 0,
- COMMAND_PARTY,
+ COMMAND_PARTY = 0,
COMMAND_ME,
COMMAND_TOGGLE,
COMMAND_PRESENT,
@@ -195,7 +193,6 @@ enum
static const CommandInfo commands[] =
{
- {"createguild", &Commands::createGuild, -1, true},
{"party", &Commands::party, -1, true},
{"me", &Commands::me, -1, true},
{"toggle", &Commands::toggle, -1, false},