diff options
author | Alexander Harkness <me@bearbin.net> | 2020-10-11 18:14:43 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-10-11 18:14:43 +0200 |
commit | c8c061edf7c2441fce0dc0136cba293959ac1407 (patch) | |
tree | c7098f33682b32ce606ea4913dc180a1ba320e24 /src/WorldStorage/WorldStorage.h | |
parent | Simple end gen (#4973) (diff) | |
download | cuberite-c8c061edf7c2441fce0dc0136cba293959ac1407.tar cuberite-c8c061edf7c2441fce0dc0136cba293959ac1407.tar.gz cuberite-c8c061edf7c2441fce0dc0136cba293959ac1407.tar.bz2 cuberite-c8c061edf7c2441fce0dc0136cba293959ac1407.tar.lz cuberite-c8c061edf7c2441fce0dc0136cba293959ac1407.tar.xz cuberite-c8c061edf7c2441fce0dc0136cba293959ac1407.tar.zst cuberite-c8c061edf7c2441fce0dc0136cba293959ac1407.zip |
Diffstat (limited to 'src/WorldStorage/WorldStorage.h')
-rw-r--r-- | src/WorldStorage/WorldStorage.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/WorldStorage/WorldStorage.h b/src/WorldStorage/WorldStorage.h index fd6cd59e1..114abb651 100644 --- a/src/WorldStorage/WorldStorage.h +++ b/src/WorldStorage/WorldStorage.h @@ -100,10 +100,10 @@ protected: virtual void Execute(void) override; - /** Loads one chunk from the queue (if any queued); returns true if there are more chunks in the load queue */ + /** Loads one chunk from the queue (if any queued); returns true if there was a chunk in the queue to load */ bool LoadOneChunk(void); - /** Saves one chunk from the queue (if any queued); returns true if there are more chunks in the save queue */ + /** Saves one chunk from the queue (if any queued); returns true if there was a chunk in the queue to save */ bool SaveOneChunk(void); } ; |