diff options
author | attilamolnar <attilamolnar@hush.com> | 2012-10-13 03:12:29 +0200 |
---|---|---|
committer | attilamolnar <attilamolnar@hush.com> | 2012-12-02 19:39:46 +0100 |
commit | ac7defcd3e52695dcf5e5150e9fe3e1624205e64 (patch) | |
tree | da428a276376986ca64390d5cf5662083f8197c6 /src/modules/m_deaf.cpp | |
parent | 6dd61235fc8cb67ba9919b84be42c966b7273fac (diff) |
Attach to events and register services in init()
Diffstat (limited to 'src/modules/m_deaf.cpp')
-rw-r--r-- | src/modules/m_deaf.cpp | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/modules/m_deaf.cpp b/src/modules/m_deaf.cpp index 958abcdd4..45a53491c 100644 --- a/src/modules/m_deaf.cpp +++ b/src/modules/m_deaf.cpp @@ -64,6 +64,10 @@ class ModuleDeaf : public Module ModuleDeaf() : m1(this) { + } + + void init() + { if (!ServerInstance->Modes->AddMode(&m1)) throw ModuleException("Could not add new modes!"); @@ -72,7 +76,6 @@ class ModuleDeaf : public Module ServerInstance->Modules->Attach(eventlist, this, 3); } - virtual void OnRehash(User* user) { ConfigTag* tag = ServerInstance->Config->ConfValue("deaf"); |