summaryrefslogtreecommitdiff
path: root/src/modules/u_listmode.h
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/u_listmode.h
parent6dd61235fc8cb67ba9919b84be42c966b7273fac (diff)
Attach to events and register services in init()
Diffstat (limited to 'src/modules/u_listmode.h')
-rw-r--r--src/modules/u_listmode.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/modules/u_listmode.h b/src/modules/u_listmode.h
index dde36a482..3d82a0c81 100644
--- a/src/modules/u_listmode.h
+++ b/src/modules/u_listmode.h
@@ -100,8 +100,6 @@ class ListModeBase : public ModeHandler
configtag(ctag), extItem("listbase_mode_" + name + "_list", Creator)
{
list = true;
- this->DoRehash();
- ServerInstance->Extensions.Register(&extItem);
}
/** See mode.h
@@ -216,6 +214,8 @@ class ListModeBase : public ModeHandler
*/
virtual void DoImplements(Module* m)
{
+ ServerInstance->Modules->AddService(extItem);
+ this->DoRehash();
Implementation eventlist[] = { I_OnSyncChannel, I_OnRehash };
ServerInstance->Modules->Attach(eventlist, m, 2);
}