summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJulian Laubstein <julianlaubstein@yahoo.de>2015-11-22 23:57:53 +0100
committerJulian Laubstein <julianlaubstein@yahoo.de>2015-11-23 02:12:19 +0100
commitc32b5fcaa9cc4aa2a5b0a88d91b58bbc4a110779 (patch)
tree1bf6d61dc2a9240d4feef7b710103945990c81d2
parentMerge pull request #2679 from cuberite/vh (diff)
downloadcuberite-c32b5fcaa9cc4aa2a5b0a88d91b58bbc4a110779.tar
cuberite-c32b5fcaa9cc4aa2a5b0a88d91b58bbc4a110779.tar.gz
cuberite-c32b5fcaa9cc4aa2a5b0a88d91b58bbc4a110779.tar.bz2
cuberite-c32b5fcaa9cc4aa2a5b0a88d91b58bbc4a110779.tar.lz
cuberite-c32b5fcaa9cc4aa2a5b0a88d91b58bbc4a110779.tar.xz
cuberite-c32b5fcaa9cc4aa2a5b0a88d91b58bbc4a110779.tar.zst
cuberite-c32b5fcaa9cc4aa2a5b0a88d91b58bbc4a110779.zip
-rw-r--r--src/Server.cpp16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/Server.cpp b/src/Server.cpp
index 12c45467d..0feb024c1 100644
--- a/src/Server.cpp
+++ b/src/Server.cpp
@@ -608,14 +608,14 @@ void cServer::PrintHelp(const AStringVector & a_Split, cCommandOutputCallback &
void cServer::BindBuiltInConsoleCommands(void)
{
cPluginManager * PlgMgr = cPluginManager::Get();
- PlgMgr->BindConsoleCommand("help", nullptr, " - Shows the available commands");
- PlgMgr->BindConsoleCommand("reload", nullptr, " - Reloads all plugins");
- PlgMgr->BindConsoleCommand("restart", nullptr, " - Restarts the server cleanly");
- PlgMgr->BindConsoleCommand("stop", nullptr, " - Stops the server cleanly");
- PlgMgr->BindConsoleCommand("chunkstats", nullptr, " - Displays detailed chunk memory statistics");
- PlgMgr->BindConsoleCommand("load <pluginname>", nullptr, " - Adds and enables the specified plugin");
- PlgMgr->BindConsoleCommand("unload <pluginname>", nullptr, " - Disables the specified plugin");
- PlgMgr->BindConsoleCommand("destroyentities", nullptr, " - Destroys all entities in all worlds");
+ PlgMgr->BindConsoleCommand("help", nullptr, "Shows the available commands");
+ PlgMgr->BindConsoleCommand("reload", nullptr, "Reloads all plugins");
+ PlgMgr->BindConsoleCommand("restart", nullptr, "Restarts the server cleanly");
+ PlgMgr->BindConsoleCommand("stop", nullptr, "Stops the server cleanly");
+ PlgMgr->BindConsoleCommand("chunkstats", nullptr, "Displays detailed chunk memory statistics");
+ PlgMgr->BindConsoleCommand("load <pluginname>", nullptr, "Adds and enables the specified plugin");
+ PlgMgr->BindConsoleCommand("unload <pluginname>", nullptr, "Disables the specified plugin");
+ PlgMgr->BindConsoleCommand("destroyentities", nullptr, "Destroys all entities in all worlds");
#if defined(_MSC_VER) && defined(_DEBUG) && defined(ENABLE_LEAK_FINDER)
PlgMgr->BindConsoleCommand("dumpmem", nullptr, " - Dumps all used memory blocks together with their callstacks into memdump.xml");