diff options
| author | 2012-05-27 06:10:41 -0700 | |
|---|---|---|
| committer | 2012-05-27 06:10:41 -0700 | |
| commit | 9383bf66fa02e37a4cea904fe9be4fe4f5eb7fa0 (patch) | |
| tree | a510b6a8ada2a2fa975ee32ee1ebb38aa8319856 /src/modules/m_callerid.cpp | |
| parent | Merge pull request #129 from attilamolnar/insp12+modestringfix (diff) | |
| parent | m_opermodes Get rid of the duplicated s2s message caused by SendGlobalMode (diff) | |
Merge pull request #130 from attilamolnar/insp12+modfixes
Minor improvements and fixes to several modules
Diffstat (limited to 'src/modules/m_callerid.cpp')
| -rw-r--r-- | src/modules/m_callerid.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/modules/m_callerid.cpp b/src/modules/m_callerid.cpp index f53766152..06f09cdae 100644 --- a/src/modules/m_callerid.cpp +++ b/src/modules/m_callerid.cpp @@ -372,8 +372,9 @@ public: throw ModuleException("Could not add command!"); } - Implementation eventlist[] = { I_OnRehash, I_OnUserPreNick, I_OnUserQuit, I_On005Numeric, I_OnUserPreNotice, I_OnUserPreMessage, I_OnCleanup }; - ServerInstance->Modules->Attach(eventlist, this, 7); + Implementation eventlist[] = { I_OnRehash, I_OnUserPreNick, I_OnUserQuit, I_On005Numeric, I_OnUserPreNotice, I_OnUserPreMessage, I_OnCleanup, + I_OnSyncUserMetaData, I_OnDecodeMetaData }; + ServerInstance->Modules->Attach(eventlist, this, 9); } virtual ~ModuleCallerID() |
