From 3f389a4bd951cbf6f8ca139473647eaae0447322 Mon Sep 17 00:00:00 2001 From: brain Date: Sat, 8 Jul 2006 17:53:03 +0000 Subject: Convert new +isw modes to new mode format git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@4176 e03df62e-2008-0410-955e-edbf42e46eb7 --- src/modes/umode_s.cpp | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) (limited to 'src/modes/umode_s.cpp') diff --git a/src/modes/umode_s.cpp b/src/modes/umode_s.cpp index a56e29034..0c005f56a 100644 --- a/src/modes/umode_s.cpp +++ b/src/modes/umode_s.cpp @@ -12,14 +12,15 @@ ModeAction ModeUserServerNotice::OnModeChange(userrec* source, userrec* dest, ch { /* 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_SERVERNOTICE : dest->modebits &= ~UM_SERVERNOTICE; - - /* Use the bitfields to build the user's mode string */ - ModeParser::BuildModeString(dest); + if (dest->modes[UM_SERVERNOTICE] != adding) + { + dest->modes[UM_SERVERNOTICE] = adding; + return MODEACTION_ALLOW; + } /* Allow the change */ - return MODEACTION_ALLOW; + return MODEACTION_DENY; } -- cgit v1.2.3