summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/modes/umode_i.cpp13
-rw-r--r--src/modes/umode_s.cpp13
-rw-r--r--src/modes/umode_w.cpp13
-rw-r--r--src/users.cpp13
4 files changed, 34 insertions, 18 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;
}
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;
}
diff --git a/src/modes/umode_w.cpp b/src/modes/umode_w.cpp
index 9115a6786..8cfbf8fd2 100644
--- a/src/modes/umode_w.cpp
+++ b/src/modes/umode_w.cpp
@@ -12,14 +12,15 @@ ModeAction ModeUserWallops::OnModeChange(userrec* source, userrec* dest, chanrec
{
/* 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_WALLOPS : dest->modebits &= ~UM_WALLOPS;
-
- /* Use the bitfields to build the user's mode string */
- ModeParser::BuildModeString(dest);
+ if (dest->modes[UM_WALLOPS] != adding)
+ {
+ dest->modes[UM_WALLOPS] = adding;
+ return MODEACTION_ALLOW;
+ }
/* Allow the change */
- return MODEACTION_ALLOW;
+ return MODEACTION_DENY;
}
diff --git a/src/users.cpp b/src/users.cpp
index 78409dc6f..48ce0054b 100644
--- a/src/users.cpp
+++ b/src/users.cpp
@@ -110,6 +110,19 @@ bool DoneClassesAndTypes(const char* tag)
return true;
}
+const char* userrec::FormatModes()
+{
+ static char data[MAXBUF];
+ int offset = 0;
+ for (int n = 0; n < 64; n++)
+ {
+ if (modes[n])
+ data[offset++] = n+65;
+ }
+ data[offset] = 0;
+ return data;
+}
+
userrec::userrec()
{
// the PROPER way to do it, AVOID bzero at *ALL* costs