diff options
author | Adam- <Adam-@5417fbe8-f217-4b02-8779-1006273d7864> | 2010-01-06 20:09:48 +0000 |
---|---|---|
committer | Adam- <Adam-@5417fbe8-f217-4b02-8779-1006273d7864> | 2010-01-06 20:09:48 +0000 |
commit | 9124a3be5347317918d9fb95991bdb2dd3818c99 (patch) | |
tree | 59b726e2470328f56996a96b94fbc57e622c1edb /include/modules.h | |
parent | b462814760cb7c0830072275acc97291a9fb905b (diff) |
Fixed windows build and cleaned up a few small things
git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@2736 5417fbe8-f217-4b02-8779-1006273d7864
Diffstat (limited to 'include/modules.h')
-rw-r--r-- | include/modules.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/include/modules.h b/include/modules.h index c25016bdd..0656e2a4e 100644 --- a/include/modules.h +++ b/include/modules.h @@ -219,12 +219,12 @@ struct ModuleLang_ { enum CommandFlag { - CFLAG_ALLOW_UNREGISTERED = 1, - CFLAG_ALLOW_FORBIDDEN = 2, - CFLAG_ALLOW_SUSPENDED = 4, - CFLAG_ALLOW_UNREGISTEREDCHANNEL = 8, - CFLAG_STRIP_CHANNEL = 16, - CFLAG_DISABLE_FANTASY = 32 + CFLAG_ALLOW_UNREGISTERED, + CFLAG_ALLOW_FORBIDDEN, + CFLAG_ALLOW_SUSPENDED, + CFLAG_ALLOW_UNREGISTEREDCHANNEL, + CFLAG_STRIP_CHANNEL, + CFLAG_DISABLE_FANTASY }; /** Every services command is a class, inheriting from Command. |