ircd: load modules after conf files

The alias module depends on this
This commit is contained in:
Elizabeth Myers 2016-04-06 07:43:45 -05:00
parent 269646ed4c
commit a19097baa4
1 changed files with 2 additions and 3 deletions

View File

@ -779,9 +779,6 @@ charybdis_main(int argc, char *argv[])
construct_cflags_strings();
load_all_modules(1);
load_core_modules(1);
init_authd(); /* Start up authd. */
init_dns(); /* Start up DNS query system */
@ -793,6 +790,8 @@ charybdis_main(int argc, char *argv[])
mod_add_path(MODULE_DIR);
mod_add_path(MODULE_DIR "/autoload");
load_all_modules(1);
load_core_modules(1);
init_isupport();