From cd4f6da735af2e9cdcf6acffe0df5d161a2dc468 Mon Sep 17 00:00:00 2001 From: Adam Date: Wed, 27 Jul 2011 19:24:58 -0400 Subject: Bug #1289 - Fixed hooking to delcore event in cs_main --- modules/core/cs_main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'modules/core/cs_main.cpp') 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); } -- cgit