diff options
Diffstat (limited to 'modules/global/main')
-rw-r--r-- | modules/global/main/global.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/global/main/global.cpp b/modules/global/main/global.cpp index f3d64a87d..103d9efc3 100644 --- a/modules/global/main/global.cpp +++ b/modules/global/main/global.cpp @@ -40,11 +40,11 @@ class GlobalCore : public Module public: GlobalCore(const Anope::string &modname, const Anope::string &creator) : Module(modname, creator, PSEUDOCLIENT | VENDOR) + , GlobalService(this) , EventHook<Event::Restart>(this) , EventHook<Event::Shutdown>(this) , EventHook<Event::NewServer>(this) , EventHook<Event::Help>(this) - , GlobalService(this) { } |