summaryrefslogtreecommitdiff
path: root/src/modes/umode_i.cpp
diff options
context:
space:
mode:
authorbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2006-07-08 17:04:18 +0000
committerbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2006-07-08 17:04:18 +0000
commitd40e1e5b0b8c4b94359637921387cd80e9de991b (patch)
tree130905009d41a905f527082d2fa03c893020982b /src/modes/umode_i.cpp
parent7bb5bcf7728ef24759ebad38b404c5a2009f7456 (diff)
Added usermodes +swi.
Note the usermode system needs a bit of a refactor to combine module and core modes into the same storage neatly (as we did with channels) this is next on my todo. git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@4174 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/modes/umode_i.cpp')
-rw-r--r--src/modes/umode_i.cpp25
1 files changed, 25 insertions, 0 deletions
diff --git a/src/modes/umode_i.cpp b/src/modes/umode_i.cpp
new file mode 100644
index 000000000..08af105ca
--- /dev/null
+++ b/src/modes/umode_i.cpp
@@ -0,0 +1,25 @@
+#include "inspircd.h"
+#include "mode.h"
+#include "channels.h"
+#include "users.h"
+#include "modes/umode_i.h"
+
+ModeUserInvisible::ModeUserInvisible() : ModeHandler('i', 0, 0, false, MODETYPE_USER, false)
+{
+}
+
+ModeAction ModeUserInvisible::OnModeChange(userrec* source, userrec* dest, chanrec* channel, std::string &parameter, bool adding)
+{
+ /* Only opers can change other users modes */
+ if ((source != dest) && (!*source->oper))
+ return MODEACTION_ALLOW;
+
+ /* 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);
+
+ /* Allow the change */
+ return MODEACTION_ALLOW;
+}