diff options
author | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2006-07-08 17:53:03 +0000 |
---|---|---|
committer | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2006-07-08 17:53:03 +0000 |
commit | 3f389a4bd951cbf6f8ca139473647eaae0447322 (patch) | |
tree | 916fe4d48aa33f0fdb090e860fb4659c792d132d /src/modes/umode_i.cpp | |
parent | 33ed72a1dfae595132dd50c760b6a312ef2ce8fe (diff) |
Convert new +isw modes to new mode format
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@4176 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/modes/umode_i.cpp')
-rw-r--r-- | src/modes/umode_i.cpp | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/src/modes/umode_i.cpp b/src/modes/umode_i.cpp index 08af105ca..584a12ff5 100644 --- a/src/modes/umode_i.cpp +++ b/src/modes/umode_i.cpp @@ -12,14 +12,15 @@ ModeAction ModeUserInvisible::OnModeChange(userrec* source, userrec* dest, chanr { /* Only opers can change other users modes */ if ((source != dest) && (!*source->oper)) - return MODEACTION_ALLOW; + return MODEACTION_DENY; /* Set the bitfields */ - adding ? dest->modebits |= UM_INVISIBLE : dest->modebits &= ~UM_INVISIBLE; - - /* Use the bitfields to build the user's mode string */ - ModeParser::BuildModeString(dest); + if (dest->modes[UM_INVISIBLE] != adding) + { + dest->modes[UM_INVISIBLE] = adding; + return MODEACTION_ALLOW; + } /* Allow the change */ - return MODEACTION_ALLOW; + return MODEACTION_DENY; } |