diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/cmd_rehash.cpp | 3 | ||||
-rw-r--r-- | src/inspircd.cpp | 2 |
2 files changed, 3 insertions, 2 deletions
diff --git a/src/cmd_rehash.cpp b/src/cmd_rehash.cpp index 9823f1ab3..b856fa888 100644 --- a/src/cmd_rehash.cpp +++ b/src/cmd_rehash.cpp @@ -43,13 +43,14 @@ CmdResult cmd_rehash::Handle (const char** parameters, int pcnt, userrec *user) ServerInstance->Config->Read(false,user); ServerInstance->Res->Rehash(); ServerInstance->ResetMaxBans(); - ServerInstance->BuildISupport(); } if (old_disabled != ServerInstance->Config->DisabledCommands) InitializeDisabledCommands(ServerInstance->Config->DisabledCommands, ServerInstance); FOREACH_MOD(I_OnRehash,OnRehash(user, parameter)); + ServerInstance->BuildISupport(); + return CMD_SUCCESS; } diff --git a/src/inspircd.cpp b/src/inspircd.cpp index 41b524628..4e11318cc 100644 --- a/src/inspircd.cpp +++ b/src/inspircd.cpp @@ -204,8 +204,8 @@ void InspIRCd::Rehash(int status) SI->Config->Read(false,NULL); SI->ResetMaxBans(); SI->Res->Rehash(); - SI->BuildISupport(); FOREACH_MOD_I(SI,I_OnRehash,OnRehash(NULL,"")); + SI->BuildISupport(); } void InspIRCd::ResetMaxBans() |