diff options
author | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2006-07-08 18:40:02 +0000 |
---|---|---|
committer | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2006-07-08 18:40:02 +0000 |
commit | bb319272f8afffcca49c881e8de3e1a1f6eaa570 (patch) | |
tree | 7c2082e5c0fcc98c43c5add00eaedf9f26cdb1db /src/modes/umode_o.cpp | |
parent | 9fb4cb8d3355fb6d80b18f1a6b6d65106720a428 (diff) |
Add code to remove an opers opertype when they oper down
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@4184 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/modes/umode_o.cpp')
-rw-r--r-- | src/modes/umode_o.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/modes/umode_o.cpp b/src/modes/umode_o.cpp index 2ce1fe5c5..2105376ba 100644 --- a/src/modes/umode_o.cpp +++ b/src/modes/umode_o.cpp @@ -25,5 +25,7 @@ ModeAction ModeUserOperator::OnModeChange(userrec* source, userrec* dest, chanre * to your userrec! */ dest->modes[UM_OPERATOR] = 0; + /* Remove their opertype when they oper down */ + *dest->oper = 0; return MODEACTION_ALLOW; } |