diff options
| author | 2006-08-25 22:23:06 +0000 | |
|---|---|---|
| committer | 2006-08-25 22:23:06 +0000 | |
| commit | 1afe959c7574b479e4a49a62885d2ac2757025ab (patch) | |
| tree | ceaff5ca1994000cd2c28374dfd0100eeb8d6c95 /src/modules/m_censor.cpp | |
| parent | Fix changing of idents and hosts (it wasnt working -- in fact WriteCommon was... (diff) | |
Remove On005Numeric event from a ton of modules which no longer need it (as CHANMODES= part of 005 is now automatically done)
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@5024 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/modules/m_censor.cpp')
| -rw-r--r-- | src/modules/m_censor.cpp | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/src/modules/m_censor.cpp b/src/modules/m_censor.cpp index bbf148657..acc93fa6c 100644 --- a/src/modules/m_censor.cpp +++ b/src/modules/m_censor.cpp @@ -21,7 +21,6 @@ using namespace std; #include "users.h" #include "channels.h" #include "modules.h" - #include "inspircd.h" typedef std::map<irc::string,irc::string> censor_t; @@ -133,14 +132,9 @@ class ModuleCensor : public Module void Implements(char* List) { - List[I_OnRehash] = List[I_On005Numeric] = List[I_OnUserPreMessage] = List[I_OnUserPreNotice] = 1; + List[I_OnRehash] = List[I_OnUserPreMessage] = List[I_OnUserPreNotice] = 1; } - - virtual void On005Numeric(std::string &output) - { - } - virtual ~ModuleCensor() { DELETE(cu); |
