diff options
author | narroo <narroo@vt.edu> | 2014-02-11 20:38:28 +0100 |
---|---|---|
committer | narroo <narroo@vt.edu> | 2014-02-11 20:38:28 +0100 |
commit | e53b331b4a17234c89f0ac54e724a5f48de4c4be (patch) | |
tree | cf9cd5bc187a8d2366e4a62c20476e3218fc3f1b /src/World.h | |
parent | Alpha-Sorted List. (diff) | |
download | cuberite-e53b331b4a17234c89f0ac54e724a5f48de4c4be.tar cuberite-e53b331b4a17234c89f0ac54e724a5f48de4c4be.tar.gz cuberite-e53b331b4a17234c89f0ac54e724a5f48de4c4be.tar.bz2 cuberite-e53b331b4a17234c89f0ac54e724a5f48de4c4be.tar.lz cuberite-e53b331b4a17234c89f0ac54e724a5f48de4c4be.tar.xz cuberite-e53b331b4a17234c89f0ac54e724a5f48de4c4be.tar.zst cuberite-e53b331b4a17234c89f0ac54e724a5f48de4c4be.zip |
Diffstat (limited to 'src/World.h')
-rw-r--r-- | src/World.h | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/src/World.h b/src/World.h index 5161c7fd6..f22a8f49c 100644 --- a/src/World.h +++ b/src/World.h @@ -252,10 +252,6 @@ public: bool IsChunkValid (int a_ChunkX, int a_ChunkZ) const; bool HasChunkAnyClients(int a_ChunkX, int a_ChunkZ) const; - - /** Unloads all chunks immediately. Dangerous interface, may deadlock, use QueueUnloadUnusedChunks() instead*/ - void UnloadUnusedChunks(void); - /** Queues a task to unload unused chunks onto the tick thread. The prefferred way of unloading*/ void QueueUnloadUnusedChunks(void); // tolua_export @@ -882,6 +878,9 @@ private: /** Ticks all clients that are in this world */ void TickClients(float a_Dt); + /** Unloads all chunks immediately.*/ + void UnloadUnusedChunks(void); + void UpdateSkyDarkness(void); /** <summary>Generates a random spawnpoint on solid land by walking chunks and finding their biomes</summary> */ |