diff options
author | Tiger Wang <ziwei.tiger@hotmail.co.uk> | 2013-08-03 18:24:06 +0200 |
---|---|---|
committer | Tiger Wang <ziwei.tiger@hotmail.co.uk> | 2013-08-03 18:24:06 +0200 |
commit | ff91a3317d76eea77f5e8c1e80b459524c1a061a (patch) | |
tree | a2755f662c71797f56c00853f475814e7bab46e1 | |
parent | Lump in some core changes. (diff) | |
download | cuberite-ff91a3317d76eea77f5e8c1e80b459524c1a061a.tar cuberite-ff91a3317d76eea77f5e8c1e80b459524c1a061a.tar.gz cuberite-ff91a3317d76eea77f5e8c1e80b459524c1a061a.tar.bz2 cuberite-ff91a3317d76eea77f5e8c1e80b459524c1a061a.tar.lz cuberite-ff91a3317d76eea77f5e8c1e80b459524c1a061a.tar.xz cuberite-ff91a3317d76eea77f5e8c1e80b459524c1a061a.tar.zst cuberite-ff91a3317d76eea77f5e8c1e80b459524c1a061a.zip |
-rw-r--r-- | source/Server.cpp | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/source/Server.cpp b/source/Server.cpp index 67a02f626..55a42cd44 100644 --- a/source/Server.cpp +++ b/source/Server.cpp @@ -1,4 +1,3 @@ - // ReDucTor is an awesome guy who helped me a lot #include "Globals.h" // NOTE: MSVC stupidness requires this to be the same across all modules @@ -481,11 +480,11 @@ void cServer::ExecuteConsoleCommand(const AString & a_Cmd, cCommandOutputCallbac void cServer::BindBuiltInConsoleCommands(void) { cPluginManager * PlgMgr = cPluginManager::Get(); - PlgMgr->BindConsoleCommand("restart", NULL, "Restarts the server cleanly"); - PlgMgr->BindConsoleCommand("stop", NULL, "Stops the server cleanly"); - PlgMgr->BindConsoleCommand("chunkstats", NULL, "Displays detailed chunk memory statistics"); + PlgMgr->BindConsoleCommand("restart", NULL, " - Restarts the server cleanly"); + PlgMgr->BindConsoleCommand("stop", NULL, " - Stops the server cleanly"); + PlgMgr->BindConsoleCommand("chunkstats", NULL, " - Displays detailed chunk memory statistics"); #if defined(_MSC_VER) && defined(_DEBUG) && defined(ENABLE_LEAK_FINDER) - PlgMgr->BindConsoleCommand("dumpmem", NULL, "Dumps all used memory blocks together with their callstacks into memdump.xml"); + PlgMgr->BindConsoleCommand("dumpmem", NULL, " - Dumps all used memory blocks together with their callstacks into memdump.xml"); #endif } |