diff options
author | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2006-03-09 14:18:33 +0000 |
---|---|---|
committer | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2006-03-09 14:18:33 +0000 |
commit | 23101be0f2e1f1853147dfb0078b8aadbca76746 (patch) | |
tree | 88192ba795dad80021324b0129df24f7d5789ae8 /src/mode.cpp | |
parent | 368022378b7618bad9e785ab5e5d3d57e6c5369f (diff) |
UM_WALLOPS had value 3 which was a combination of UM_SERVERNOTICE and UM_INVISIBLE :/
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@3591 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/mode.cpp')
-rw-r--r-- | src/mode.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/mode.cpp b/src/mode.cpp index 73315227a..dbbb42289 100644 --- a/src/mode.cpp +++ b/src/mode.cpp @@ -1253,6 +1253,8 @@ void cmd_mode::Handle (char **parameters, int pcnt, userrec *user) case 'w': dest->modebits |= UM_WALLOPS; break; + default: + break; } } } @@ -1280,6 +1282,8 @@ void cmd_mode::Handle (char **parameters, int pcnt, userrec *user) case 'w': dest->modebits &= ~UM_WALLOPS; break; + default: + break; } } } |