diff options
author | Howaner <franzi.moos@googlemail.com> | 2014-02-21 14:53:46 +0100 |
---|---|---|
committer | Howaner <franzi.moos@googlemail.com> | 2014-02-21 14:53:46 +0100 |
commit | 21febaf4b342aecd5d797b1e2017591fde208388 (patch) | |
tree | beaf6b0b623a08052932351f64fb9d0924dd6d4d /src/Root.cpp | |
parent | Bad UTF-8 o.O (diff) | |
download | cuberite-21febaf4b342aecd5d797b1e2017591fde208388.tar cuberite-21febaf4b342aecd5d797b1e2017591fde208388.tar.gz cuberite-21febaf4b342aecd5d797b1e2017591fde208388.tar.bz2 cuberite-21febaf4b342aecd5d797b1e2017591fde208388.tar.lz cuberite-21febaf4b342aecd5d797b1e2017591fde208388.tar.xz cuberite-21febaf4b342aecd5d797b1e2017591fde208388.tar.zst cuberite-21febaf4b342aecd5d797b1e2017591fde208388.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..8680c0082 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(); } |