diff options
author | Mattes D <github@xoft.cz> | 2014-02-28 14:28:50 +0100 |
---|---|---|
committer | Mattes D <github@xoft.cz> | 2014-02-28 14:28:50 +0100 |
commit | 6ad4b78a7ba00be58583b055f7d7227be465ec26 (patch) | |
tree | 1e5cc61a97bff757482193eb2ee50bb395bda5ec /src/Root.cpp | |
parent | Added a MobDebug enabler script. (diff) | |
parent | Better Jukebox API (diff) | |
download | cuberite-6ad4b78a7ba00be58583b055f7d7227be465ec26.tar cuberite-6ad4b78a7ba00be58583b055f7d7227be465ec26.tar.gz cuberite-6ad4b78a7ba00be58583b055f7d7227be465ec26.tar.bz2 cuberite-6ad4b78a7ba00be58583b055f7d7227be465ec26.tar.lz cuberite-6ad4b78a7ba00be58583b055f7d7227be465ec26.tar.xz cuberite-6ad4b78a7ba00be58583b055f7d7227be465ec26.tar.zst cuberite-6ad4b78a7ba00be58583b055f7d7227be465ec26.zip |
Diffstat (limited to 'src/Root.cpp')
-rw-r--r-- | src/Root.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/Root.cpp b/src/Root.cpp index 206255916..af2cb9e4b 100644 --- a/src/Root.cpp +++ b/src/Root.cpp @@ -194,7 +194,7 @@ void cRoot::Start(void) #if !defined(ANDROID_NDK) LOGD("Starting InputThread..."); m_InputThread = new cThread( InputThread, this, "cRoot::InputThread" ); - m_InputThread->Start( false ); // We should NOT wait? Otherwise we canīt stop the server from other threads than the input thread + m_InputThread->Start( false ); // We should NOT wait? Otherwise we can't stop the server from other threads than the input thread #endif long long finishmseconds = Time.GetNowTime(); @@ -536,7 +536,9 @@ void cRoot::SaveAllChunks(void) void cRoot::ReloadGroups(void) { + LOG("Reload groups ..."); m_GroupManager->LoadGroups(); + m_GroupManager->CheckUsers(); } |