]> git.localhorst.tv Git - blank.git/commitdiff
fix server state update
authorDaniel Karbach <daniel.karbach@localhorst.tv>
Thu, 10 Sep 2015 15:13:52 +0000 (17:13 +0200)
committerDaniel Karbach <daniel.karbach@localhorst.tv>
Thu, 10 Sep 2015 15:13:52 +0000 (17:13 +0200)
src/app/ServerState.cpp

index e83984106ed06c100c04c6d6f656fff8c0f9a89e..0be565307308ce330b9a38d793b2be1a5496dc3b 100644 (file)
@@ -46,9 +46,8 @@ void ServerState::Update(int dt) {
        push_timer.Update(dt);
        server.Handle();
        spawner.Update(dt);
-       if (!world.Players().empty()) {
-               world.Update(dt);
-       }
+       world.Update(dt);
+       chunk_loader.Update(dt);
        if (push_timer.Hit()) {
                server.Update(dt);
        }