diff options
author | w00t <w00t@e03df62e-2008-0410-955e-edbf42e46eb7> | 2007-05-14 09:38:31 +0000 |
---|---|---|
committer | w00t <w00t@e03df62e-2008-0410-955e-edbf42e46eb7> | 2007-05-14 09:38:31 +0000 |
commit | 692d7a841cba2ef653c1d7f65510f7b568636227 (patch) | |
tree | 83b83c6978be4d991bf851bdb352d073b28a2d33 | |
parent | 32be456c07972a289ebbf8db99b88a591e963235 (diff) |
Add +f (chanfilter) to <options:exemptchanops>
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@7019 e03df62e-2008-0410-955e-edbf42e46eb7
-rw-r--r-- | docs/inspircd.conf.example | 2 | ||||
-rw-r--r-- | src/modules/m_chanfilter.cpp | 3 |
2 files changed, 3 insertions, 2 deletions
diff --git a/docs/inspircd.conf.example b/docs/inspircd.conf.example index e37088f10..4a3fa3dca 100644 --- a/docs/inspircd.conf.example +++ b/docs/inspircd.conf.example @@ -909,7 +909,7 @@ quietbursts="yes" pingwarning="15" allowhalfop="yes" - exemptchanops="Sc"> + exemptchanops="Scf"> #-#-#-#-#-#-#-#-#-#-#-#-#-#- TIME SYNC OPTIONS -#-#-#-#-#-#-#-#-#-#-#-# # Time sychronization options for m_spanningtree linking. # diff --git a/src/modules/m_chanfilter.cpp b/src/modules/m_chanfilter.cpp index e21ac8ca4..d9e2f84f0 100644 --- a/src/modules/m_chanfilter.cpp +++ b/src/modules/m_chanfilter.cpp @@ -92,7 +92,7 @@ class ModuleChanFilter : public Module virtual int ProcessMessages(userrec* user,chanrec* chan,std::string &text) { - if (!IS_LOCAL(user)) + if (!IS_LOCAL(user) || CHANOPS_EXEMPT(ServerInstance, 'g') && chan->->GetStatus(user) == STATUS_OP) return 0; // Create a copy of the string in irc::string @@ -112,6 +112,7 @@ class ModuleChanFilter : public Module } } } + return 0; } |