summaryrefslogtreecommitdiffstats
path: root/src/Chunk.h
diff options
context:
space:
mode:
authorTiger Wang <ziwei.tiger@outlook.com>2020-07-29 19:51:39 +0200
committerTiger Wang <ziwei.tiger@outlook.com>2020-08-02 16:52:06 +0200
commitb205d233bdd34e26d6bde31879c10b6cabf820b6 (patch)
tree29919857422e924139e4345ebe029f06740e043a /src/Chunk.h
parentRemove unused block tick related cChunk functions (diff)
downloadcuberite-b205d233bdd34e26d6bde31879c10b6cabf820b6.tar
cuberite-b205d233bdd34e26d6bde31879c10b6cabf820b6.tar.gz
cuberite-b205d233bdd34e26d6bde31879c10b6cabf820b6.tar.bz2
cuberite-b205d233bdd34e26d6bde31879c10b6cabf820b6.tar.lz
cuberite-b205d233bdd34e26d6bde31879c10b6cabf820b6.tar.xz
cuberite-b205d233bdd34e26d6bde31879c10b6cabf820b6.tar.zst
cuberite-b205d233bdd34e26d6bde31879c10b6cabf820b6.zip
Diffstat (limited to 'src/Chunk.h')
-rw-r--r--src/Chunk.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Chunk.h b/src/Chunk.h
index 0965f1997..7e09ce8b6 100644
--- a/src/Chunk.h
+++ b/src/Chunk.h
@@ -594,7 +594,7 @@ private:
bool m_IsSaving; // True if the chunk is being saved
bool m_HasLoadFailed; // True if chunk failed to load and hasn't been generated yet since then
- std::vector<Vector3i> m_ToTickBlocks;
+ std::queue<Vector3i> m_ToTickBlocks;
sSetBlockVector m_PendingSendBlocks; ///< Blocks that have changed and need to be sent to all clients
// A critical section is not needed, because all chunk access is protected by its parent ChunkMap's csLayers