diff options
| author | 2012-10-13 03:12:29 +0200 | |
|---|---|---|
| committer | 2012-12-02 19:39:46 +0100 | |
| commit | ac7defcd3e52695dcf5e5150e9fe3e1624205e64 (patch) | |
| tree | da428a276376986ca64390d5cf5662083f8197c6 /src/modules/m_uhnames.cpp | |
| parent | Merge pull request #376 from SaberUK/insp20+fix-clean (diff) | |
Attach to events and register services in init()
Diffstat (limited to 'src/modules/m_uhnames.cpp')
| -rw-r--r-- | src/modules/m_uhnames.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/modules/m_uhnames.cpp b/src/modules/m_uhnames.cpp index 5693eb807..e446f88e8 100644 --- a/src/modules/m_uhnames.cpp +++ b/src/modules/m_uhnames.cpp @@ -31,6 +31,10 @@ class ModuleUHNames : public Module ModuleUHNames() : cap(this, "userhost-in-names") { + } + + void init() + { Implementation eventlist[] = { I_OnEvent, I_OnPreCommand, I_OnNamesListItem, I_On005Numeric }; ServerInstance->Modules->Attach(eventlist, this, 4); } |
