diff options
author | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2007-09-25 00:45:12 +0000 |
---|---|---|
committer | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2007-09-25 00:45:12 +0000 |
commit | 44898de87edde278d586494d20ba29ce0763fb32 (patch) | |
tree | a476aa67885b8abb19bab46d6bf46cf1feb70b46 /src/modules/m_deaf.cpp | |
parent | fd5f65b6f5c1848c7922c3820a90f6020abbabb1 (diff) |
Fix for bug #415, affects only trunk (wish i'd known this before i started!)
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@8079 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/modules/m_deaf.cpp')
-rw-r--r-- | src/modules/m_deaf.cpp | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/src/modules/m_deaf.cpp b/src/modules/m_deaf.cpp index b5328f785..1689f843c 100644 --- a/src/modules/m_deaf.cpp +++ b/src/modules/m_deaf.cpp @@ -68,7 +68,7 @@ class ModuleDeaf : public Module void Implements(char* List) { - List[I_OnUserPreMessage] = List[I_OnUserPreNotice] = List[I_OnRehash] = 1; + List[I_OnUserPreMessage] = List[I_OnUserPreNotice] = List[I_OnRehash] = List[I_OnBuildExemptList] = 1; } virtual void OnRehash(userrec* user, const std::string&) @@ -104,7 +104,12 @@ class ModuleDeaf : public Module return 0; } - virtual void BuildDeafList(MessageType message_type, chanrec* chan, userrec* sender, char status, std::string &text, CUList &exempt_list) + virtual void OnBuildExemptList(MessageType message_type, chanrec* chan, userrec* sender, char status, CUList &exempt_list, const std::string &text) + { + BuildDeafList(message_type, chan, sender, status, text, exempt_list); + } + + virtual void BuildDeafList(MessageType message_type, chanrec* chan, userrec* sender, char status, const std::string &text, CUList &exempt_list) { CUList *ulist; bool is_a_uline; |