summaryrefslogtreecommitdiff
path: root/src/modules/m_banexception.cpp
diff options
context:
space:
mode:
authorbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2007-11-04 22:15:46 +0000
committerbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2007-11-04 22:15:46 +0000
commit6fa2633311098d9775593186f5f5e1d339434cd2 (patch)
tree479d0dba7d2eb88eeb5f850a225f671d710e0864 /src/modules/m_banexception.cpp
parent71b7b578bdac9fdf5e70dde6c3d404660cb1766f (diff)
Fix these to use new hook system (u_listmode wasnt fixed yet)
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@8533 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/modules/m_banexception.cpp')
-rw-r--r--src/modules/m_banexception.cpp5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/modules/m_banexception.cpp b/src/modules/m_banexception.cpp
index 2066cc524..dda6a5b1d 100644
--- a/src/modules/m_banexception.cpp
+++ b/src/modules/m_banexception.cpp
@@ -42,15 +42,14 @@ class ModuleBanException : public Module
public:
- ModuleBanException(InspIRCd* Me)
- : Module(Me)
+ ModuleBanException(InspIRCd* Me) : Module(Me)
{
be = new BanException(ServerInstance);
if (!ServerInstance->AddMode(be))
throw ModuleException("Could not add new modes!");
ServerInstance->Modules->PublishInterface("ChannelBanList", this);
- //be->DoImplements(List);
+ be->DoImplements(this);
Implementation list[] = { I_OnRehash, I_OnRequest, I_On005Numeric, I_OnCheckBan };
Me->Modules->Attach(list, this, 4);