diff options
author | Adam <Adam@anope.org> | 2011-07-27 19:24:58 -0400 |
---|---|---|
committer | Adam <Adam@anope.org> | 2011-07-27 19:24:58 -0400 |
commit | cd4f6da735af2e9cdcf6acffe0df5d161a2dc468 (patch) | |
tree | 32a77e182759661e850f5ef1fc2b1f78123e2ff0 /modules/core/cs_main.cpp | |
parent | 6e032ded6e76e36247df609620c0cc6488eceae3 (diff) |
Bug #1289 - Fixed hooking to delcore event in cs_main
Diffstat (limited to 'modules/core/cs_main.cpp')
-rw-r--r-- | modules/core/cs_main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/core/cs_main.cpp b/modules/core/cs_main.cpp index 8c1678624..0ee132fe7 100644 --- a/modules/core/cs_main.cpp +++ b/modules/core/cs_main.cpp @@ -24,7 +24,7 @@ class ChanServCore : public Module if (ChanServ == NULL) throw ModuleException("No bot named " + Config->ChanServ); - Implementation i[] = { I_OnBotPrivmsg, I_OnDelChan, I_OnPreHelp, I_OnPostHelp }; + Implementation i[] = { I_OnBotPrivmsg, I_OnDelCore, I_OnPreHelp, I_OnPostHelp }; ModuleManager::Attach(i, this, 4); } |