summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSTRWarrior <niels.breuker@hotmail.nl>2014-02-09 00:13:25 +0100
committerSTRWarrior <niels.breuker@hotmail.nl>2014-02-09 00:13:25 +0100
commit2a741e719cd827344bc441a04b27f3e3c8493d33 (patch)
tree2ada9a81a60bf652818e2e7bed622f2cd811b89e
parentSplit "reload" in "reloadplugins" and "reloadgroups". (diff)
downloadcuberite-2a741e719cd827344bc441a04b27f3e3c8493d33.tar
cuberite-2a741e719cd827344bc441a04b27f3e3c8493d33.tar.gz
cuberite-2a741e719cd827344bc441a04b27f3e3c8493d33.tar.bz2
cuberite-2a741e719cd827344bc441a04b27f3e3c8493d33.tar.lz
cuberite-2a741e719cd827344bc441a04b27f3e3c8493d33.tar.xz
cuberite-2a741e719cd827344bc441a04b27f3e3c8493d33.tar.zst
cuberite-2a741e719cd827344bc441a04b27f3e3c8493d33.zip
-rw-r--r--src/Server.cpp7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/Server.cpp b/src/Server.cpp
index 671d251cd..ab1458da4 100644
--- a/src/Server.cpp
+++ b/src/Server.cpp
@@ -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):