summaryrefslogtreecommitdiff
path: root/src/modules/m_dccallow.cpp
diff options
context:
space:
mode:
authorattilamolnar <attilamolnar@hush.com>2012-10-13 03:12:29 +0200
committerattilamolnar <attilamolnar@hush.com>2012-12-02 19:39:46 +0100
commitac7defcd3e52695dcf5e5150e9fe3e1624205e64 (patch)
treeda428a276376986ca64390d5cf5662083f8197c6 /src/modules/m_dccallow.cpp
parent6dd61235fc8cb67ba9919b84be42c966b7273fac (diff)
Attach to events and register services in init()
Diffstat (limited to 'src/modules/m_dccallow.cpp')
-rw-r--r--src/modules/m_dccallow.cpp6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/modules/m_dccallow.cpp b/src/modules/m_dccallow.cpp
index 3b0467ae5..68fee4a19 100644
--- a/src/modules/m_dccallow.cpp
+++ b/src/modules/m_dccallow.cpp
@@ -252,6 +252,11 @@ class ModuleDCCAllow : public Module
ModuleDCCAllow()
: cmd(this)
{
+ ext = NULL;
+ }
+
+ void init()
+ {
ext = new SimpleExtItem<dccallowlist>("dccallow", this);
ServerInstance->Extensions.Register(ext);
ServerInstance->AddCommand(&cmd);
@@ -260,7 +265,6 @@ class ModuleDCCAllow : public Module
ServerInstance->Modules->Attach(eventlist, this, 5);
}
-
virtual void OnRehash(User* user)
{
ReadFileConf();