1
0
Fork 0

"reload" is back.

This commit is contained in:
STRWarrior 2014-02-09 00:13:25 +01:00
parent 011a334a8a
commit 2a741e719c
1 changed files with 7 additions and 0 deletions

View File

@ -456,6 +456,12 @@ void cServer::ExecuteConsoleCommand(const AString & a_Cmd, cCommandOutputCallbac
PrintHelp(split, a_Output);
return;
}
if (split[0] == "reload")
{
cPluginManager::Get()->ReloadPlugins();
cRoot::Get()->ReloadGroups();
return;
}
if (split[0] == "reloadplugins")
{
cPluginManager::Get()->ReloadPlugins();
@ -464,6 +470,7 @@ void cServer::ExecuteConsoleCommand(const AString & a_Cmd, cCommandOutputCallbac
if (split[0] == "reloadgroups")
{
cRoot::Get()->ReloadGroups();
return;
}
// There is currently no way a plugin can do these (and probably won't ever be):