aboutsummaryrefslogtreecommitdiffstats
path: root/src/modules/m_callerid.cpp
diff options
context:
space:
mode:
authorGravatar Robin Burchell2012-05-27 06:10:41 -0700
committerGravatar Robin Burchell2012-05-27 06:10:41 -0700
commit9383bf66fa02e37a4cea904fe9be4fe4f5eb7fa0 (patch)
treea510b6a8ada2a2fa975ee32ee1ebb38aa8319856 /src/modules/m_callerid.cpp
parentMerge pull request #129 from attilamolnar/insp12+modestringfix (diff)
parentm_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.cpp5
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()