diff options
author | Adam- <Adam-@5417fbe8-f217-4b02-8779-1006273d7864> | 2009-09-07 17:03:55 +0000 |
---|---|---|
committer | Adam- <Adam-@5417fbe8-f217-4b02-8779-1006273d7864> | 2009-09-07 17:03:55 +0000 |
commit | 2f93b4225f3b0f908170c6591cc083ee3d297348 (patch) | |
tree | 86e36c1bbba059ed3cf25517045940ebb8bc8023 /src/core/ss_main.c | |
parent | 004d9c7b18f7e5b8a4660e17238962630e2aadaa (diff) |
Added the OnBotPreLoad event to fix introducing StatServ
git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@2494 5417fbe8-f217-4b02-8779-1006273d7864
Diffstat (limited to 'src/core/ss_main.c')
-rw-r--r-- | src/core/ss_main.c | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/core/ss_main.c b/src/core/ss_main.c index 22d2edc1b..8dbea1271 100644 --- a/src/core/ss_main.c +++ b/src/core/ss_main.c @@ -42,6 +42,7 @@ class SSMain : public Module this->SetPermanent(true); this->AddCommand(cmdTable, new CommandSSHelp(), MOD_HEAD); + ModuleManager::Attach(I_OnBotPreLoad, this); statserv = findbot("StatServ"); if (!statserv) @@ -71,6 +72,16 @@ class SSMain : public Module delete statserv; } } + + void OnBotPreLoad(BotInfo *bi) + { + if (!strcmp(bi->nick, "StatServ")) + { + delete statserv; + statserv = bi; + statserv->cmdTable = cmdTable; + } + } }; MODULE_INIT("ss_main", SSMain) |