diff options
author | Andrei Karas <akaras@inbox.ru> | 2014-08-25 12:54:39 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2014-08-25 12:54:39 +0300 |
commit | 4c0d3dc62399e35c288cb82dfbf3f8811328f06c (patch) | |
tree | 24db2449750712363aa59c5b20807976a90f0771 /src/commands.h | |
parent | e5ac29f35d9a0ede9d1263ab1bb7c20568dbdd67 (diff) | |
download | plus-4c0d3dc62399e35c288cb82dfbf3f8811328f06c.tar.gz plus-4c0d3dc62399e35c288cb82dfbf3f8811328f06c.tar.bz2 plus-4c0d3dc62399e35c288cb82dfbf3f8811328f06c.tar.xz plus-4c0d3dc62399e35c288cb82dfbf3f8811328f06c.zip |
Move chat command /cleanfonts 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 507eb2dec..fceff7fe1 100644 --- a/src/commands.h +++ b/src/commands.h @@ -51,7 +51,6 @@ struct CommandInfo final namespace Commands { - decHandler(cleanFonts); decHandler(createParty); decHandler(createGuild); decHandler(party); @@ -125,8 +124,7 @@ namespace Commands enum { - COMMAND_CLEANFONTS = 0, - COMMAND_CREATEPARTY, + COMMAND_CREATEPARTY = 0, COMMAND_CREATEGUILD, COMMAND_PARTY, COMMAND_ME, @@ -199,7 +197,6 @@ enum static const CommandInfo commands[] = { - {"cleanfonts", &Commands::cleanFonts, -1, false}, {"createparty", &Commands::createParty, -1, true}, {"createguild", &Commands::createGuild, -1, true}, {"party", &Commands::party, -1, true}, |