summaryrefslogtreecommitdiff
path: root/src/modules/m_channames.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/modules/m_channames.cpp')
-rw-r--r--src/modules/m_channames.cpp7
1 files changed, 5 insertions, 2 deletions
diff --git a/src/modules/m_channames.cpp b/src/modules/m_channames.cpp
index 49fd7af7b..559ec5314 100644
--- a/src/modules/m_channames.cpp
+++ b/src/modules/m_channames.cpp
@@ -55,10 +55,13 @@ class ModuleChannelNames : public Module
bool badchan;
public:
- ModuleChannelNames() : rememberer(ServerInstance->IsChannel)
+ ModuleChannelNames() : rememberer(ServerInstance->IsChannel), badchan(false)
+ {
+ }
+
+ void init()
{
ServerInstance->IsChannel = &myhandler;
- badchan = false;
Implementation eventlist[] = { I_OnRehash, I_OnUserKick };
ServerInstance->Modules->Attach(eventlist, this, 2);
OnRehash(NULL);