summaryrefslogtreecommitdiffstats
path: root/src/Server.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/Server.cpp')
-rw-r--r--src/Server.cpp6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/Server.cpp b/src/Server.cpp
index bfb1b1cbb..91bc6853e 100644
--- a/src/Server.cpp
+++ b/src/Server.cpp
@@ -476,6 +476,12 @@ void cServer::ExecuteConsoleCommand(const AString & a_Cmd, cCommandOutputCallbac
a_Output.Finished();
return;
}
+ if (split[0] == "load" && !split[1].empty())
+ {
+ cPluginManager::Get()->LoadPlugin(split[1]);
+ a_Output.Out("Plugin " + split[1] + " added and activated!");
+ a_Output.Finished();
+ }
// There is currently no way a plugin can do these (and probably won't ever be):
if (split[0].compare("chunkstats") == 0)