1
0
mirror of https://github.com/anope/anope.git synced 2026-06-25 03:46:36 +02:00

Bug #1289 - Fixed hooking to delcore event in cs_main

This commit is contained in:
Adam
2011-07-27 19:24:58 -04:00
parent 6e032ded6e
commit cd4f6da735
+1 -1
View File
@@ -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);
}