summaryrefslogtreecommitdiffstats
path: root/src/Server.cpp
diff options
context:
space:
mode:
authorAlexander Harkness <me@bearbin.net>2014-10-20 16:15:59 +0200
committerAlexander Harkness <me@bearbin.net>2014-10-20 16:15:59 +0200
commit1f301d7560b143ffbd382918c3d8cc6087d16fe1 (patch)
treed0d6b52ad53fe2bff4963de7d84cf048d0255f83 /src/Server.cpp
parentMerge pull request #1552 from SphinxC0re/master (diff)
parentFound it! (diff)
downloadcuberite-1f301d7560b143ffbd382918c3d8cc6087d16fe1.tar
cuberite-1f301d7560b143ffbd382918c3d8cc6087d16fe1.tar.gz
cuberite-1f301d7560b143ffbd382918c3d8cc6087d16fe1.tar.bz2
cuberite-1f301d7560b143ffbd382918c3d8cc6087d16fe1.tar.lz
cuberite-1f301d7560b143ffbd382918c3d8cc6087d16fe1.tar.xz
cuberite-1f301d7560b143ffbd382918c3d8cc6087d16fe1.tar.zst
cuberite-1f301d7560b143ffbd382918c3d8cc6087d16fe1.zip
Diffstat (limited to 'src/Server.cpp')
-rw-r--r--src/Server.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Server.cpp b/src/Server.cpp
index 67315c8cf..db3ab2ed4 100644
--- a/src/Server.cpp
+++ b/src/Server.cpp
@@ -493,9 +493,9 @@ void cServer::ExecuteConsoleCommand(const AString & a_Cmd, cCommandOutputCallbac
{
cPluginManager::PluginMap map = cPluginManager::Get()->GetAllPlugins();
- for(auto plugin_entry : map)
+ for (auto plugin_entry : map)
{
- if(plugin_entry.first == split[1])
+ if (plugin_entry.first == split[1])
{
a_Output.Out("Error! Plugin is already loaded!");
a_Output.Finished();