summaryrefslogtreecommitdiffstats
path: root/src/World.h
diff options
context:
space:
mode:
authornarroo <narroo@vt.edu>2014-02-11 14:01:25 +0100
committernarroo <narroo@vt.edu>2014-02-11 14:01:25 +0100
commitd7f32ed682b19cded6c54f14e4e46792695399a7 (patch)
tree569ea088b8ec629b9a0080e86765f38d6c64742f /src/World.h
parentFixed bug #385. UnloadUnusedChunks now has the same interface as (diff)
downloadcuberite-d7f32ed682b19cded6c54f14e4e46792695399a7.tar
cuberite-d7f32ed682b19cded6c54f14e4e46792695399a7.tar.gz
cuberite-d7f32ed682b19cded6c54f14e4e46792695399a7.tar.bz2
cuberite-d7f32ed682b19cded6c54f14e4e46792695399a7.tar.lz
cuberite-d7f32ed682b19cded6c54f14e4e46792695399a7.tar.xz
cuberite-d7f32ed682b19cded6c54f14e4e46792695399a7.tar.zst
cuberite-d7f32ed682b19cded6c54f14e4e46792695399a7.zip
Diffstat (limited to 'src/World.h')
-rw-r--r--src/World.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/World.h b/src/World.h
index e4036d8df..5161c7fd6 100644
--- a/src/World.h
+++ b/src/World.h
@@ -253,10 +253,10 @@ public:
bool HasChunkAnyClients(int a_ChunkX, int a_ChunkZ) const;
- /*Unloads all chunks immediately. Dangerous interface, may deadlock, use QueueUnloadUnusedChunks() instead*/
+ /** 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*/
+ /** Queues a task to unload unused chunks onto the tick thread. The prefferred way of unloading*/
void QueueUnloadUnusedChunks(void); // tolua_export
void CollectPickupsByPlayer(cPlayer * a_Player);