summaryrefslogtreecommitdiffstats
path: root/src/Server.cpp
diff options
context:
space:
mode:
authorMattes D <github@xoft.cz>2015-09-28 21:30:31 +0200
committerMattes D <github@xoft.cz>2015-09-28 21:30:31 +0200
commit1c8e60f91a647e681fa700d8b8ec9b49a940061f (patch)
tree8ebb9154a78f78ca4d81e39d3c0604afdf0cadf3 /src/Server.cpp
parentMerge pull request #2507 from cuberite/LuaStrictStrings (diff)
downloadcuberite-1c8e60f91a647e681fa700d8b8ec9b49a940061f.tar
cuberite-1c8e60f91a647e681fa700d8b8ec9b49a940061f.tar.gz
cuberite-1c8e60f91a647e681fa700d8b8ec9b49a940061f.tar.bz2
cuberite-1c8e60f91a647e681fa700d8b8ec9b49a940061f.tar.lz
cuberite-1c8e60f91a647e681fa700d8b8ec9b49a940061f.tar.xz
cuberite-1c8e60f91a647e681fa700d8b8ec9b49a940061f.tar.zst
cuberite-1c8e60f91a647e681fa700d8b8ec9b49a940061f.zip
Diffstat (limited to 'src/Server.cpp')
-rw-r--r--src/Server.cpp9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/Server.cpp b/src/Server.cpp
index a21248695..12c45467d 100644
--- a/src/Server.cpp
+++ b/src/Server.cpp
@@ -145,6 +145,8 @@ cServer::cServer(void) :
m_ShouldLoadOfflinePlayerData(false),
m_ShouldLoadNamedPlayerData(true)
{
+ // Initialize the LuaStateTracker singleton before the app goes multithreaded:
+ cLuaStateTracker::GetStats();
}
@@ -522,6 +524,13 @@ void cServer::ExecuteConsoleCommand(const AString & a_Cmd, cCommandOutputCallbac
a_Output.Finished();
return;
}
+
+ else if (split[0].compare("luastats") == 0)
+ {
+ a_Output.Out(cLuaStateTracker::GetStats());
+ a_Output.Finished();
+ return;
+ }
#if defined(_MSC_VER) && defined(_DEBUG) && defined(ENABLE_LEAK_FINDER)
else if (split[0].compare("dumpmem") == 0)
{