summaryrefslogtreecommitdiff
path: root/src/botserv.c
diff options
context:
space:
mode:
authorRobin Burchell w00t@inspircd.org <Robin Burchell w00t@inspircd.org@5417fbe8-f217-4b02-8779-1006273d7864>2008-11-09 03:11:54 +0000
committerRobin Burchell w00t@inspircd.org <Robin Burchell w00t@inspircd.org@5417fbe8-f217-4b02-8779-1006273d7864>2008-11-09 03:11:54 +0000
commitdf30d0bc2a52abd9889d754d30ce6aba70ae87cd (patch)
treef2a63ab31674712decedbf0528d3e7d1f89d031b /src/botserv.c
parentd35316711894c64f781d923a88243da5757cc2ab (diff)
Move modules_core_init() to ModuleManager::LoadModuleList().
git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@1612 5417fbe8-f217-4b02-8779-1006273d7864
Diffstat (limited to 'src/botserv.c')
-rw-r--r--src/botserv.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/botserv.c b/src/botserv.c
index 14d8249e2..13d483114 100644
--- a/src/botserv.c
+++ b/src/botserv.c
@@ -17,7 +17,6 @@
#include "services.h"
#include "pseudo.h"
-
/*************************************************************************/
BotInfo *botlists[256]; /* Hash list of bots */
@@ -35,7 +34,7 @@ E void moduleAddBotServCmds(void);
/*************************************************************************/
/* *INDENT-OFF* */
void moduleAddBotServCmds(void) {
- modules_core_init(BotServCoreNumber, BotServCoreModules);
+ ModuleManager::LoadModuleList(BotServCoreNumber, BotServCoreModules);
}
/* *INDENT-ON* */
/*************************************************************************/