diff options
author | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2006-03-09 13:21:35 +0000 |
---|---|---|
committer | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2006-03-09 13:21:35 +0000 |
commit | c330b24501fc56516fef098428889a0a526e706a (patch) | |
tree | 83a64774409c8c6808dd4c6a2587ca89229e9e97 /include/mode.h | |
parent | 68da120812b1e593c76ea75d0d591f47b6a4f402 (diff) |
Added userrec::modebits - fast way of checking if user has +swi rather than an icky strchr
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@3588 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'include/mode.h')
-rw-r--r-- | include/mode.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/include/mode.h b/include/mode.h index 973e9c22b..54b4aa97e 100644 --- a/include/mode.h +++ b/include/mode.h @@ -29,6 +29,12 @@ #include "channels.h" #include "ctables.h" +enum UserModeBits { + UM_INVISIBLE = 1, + UM_SERVERNOTICE = 2, + UM_WALLOPS = 3 +}; + class ModeParser { private: |