summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorattilamolnar <attilamolnar@hush.com>2012-10-23 22:08:53 +0200
committerattilamolnar <attilamolnar@hush.com>2012-10-23 22:13:38 +0200
commitc244b6686cdd906e126542609ee27d913131d66d (patch)
tree8957110b6cefffb54cc2d9bd25e55d639fcda773 /src
parentd9d0d1b6a96cf52182b46b78393ba8b2a7c50f46 (diff)
m_ircv3 Attach to OnRehash
Diffstat (limited to 'src')
-rw-r--r--src/modules/m_ircv3.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/modules/m_ircv3.cpp b/src/modules/m_ircv3.cpp
index 798734d55..06765d696 100644
--- a/src/modules/m_ircv3.cpp
+++ b/src/modules/m_ircv3.cpp
@@ -77,8 +77,8 @@ class ModuleIRCv3 : public Module
cap_extendedjoin(this, "extended-join")
{
OnRehash(NULL);
- Implementation eventlist[] = { I_OnUserJoin, I_OnPostJoin, I_OnSetAway, I_OnEvent };
- ServerInstance->Modules->Attach(eventlist, this, 4);
+ Implementation eventlist[] = { I_OnUserJoin, I_OnPostJoin, I_OnSetAway, I_OnEvent, I_OnRehash };
+ ServerInstance->Modules->Attach(eventlist, this, 5);
}
void OnRehash(User* user)