diff options
author | tycho <work.tycho@gmail.com> | 2015-10-05 17:20:07 +0200 |
---|---|---|
committer | tycho <work.tycho@gmail.com> | 2015-10-05 17:20:07 +0200 |
commit | d8c860ae58d03076fee4721267e2e3b566c0844a (patch) | |
tree | 9399904ac2fa3df4b13162a39753d43e8a11bf63 /src/ClientHandle.h | |
parent | Merge pull request #2522 from cuberite/FixLoaderGenRaceCondition (diff) | |
download | cuberite-d8c860ae58d03076fee4721267e2e3b566c0844a.tar cuberite-d8c860ae58d03076fee4721267e2e3b566c0844a.tar.gz cuberite-d8c860ae58d03076fee4721267e2e3b566c0844a.tar.bz2 cuberite-d8c860ae58d03076fee4721267e2e3b566c0844a.tar.lz cuberite-d8c860ae58d03076fee4721267e2e3b566c0844a.tar.xz cuberite-d8c860ae58d03076fee4721267e2e3b566c0844a.tar.zst cuberite-d8c860ae58d03076fee4721267e2e3b566c0844a.zip |
Diffstat (limited to '')
-rw-r--r-- | src/ClientHandle.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ClientHandle.h b/src/ClientHandle.h index b305648cb..32e894d41 100644 --- a/src/ClientHandle.h +++ b/src/ClientHandle.h @@ -383,7 +383,7 @@ private: Json::Value m_Properties; cCriticalSection m_CSChunkLists; - cChunkCoordsList m_LoadedChunks; // Chunks that the player belongs to + std::unordered_set<cChunkCoords, cChunkCoordsHash> m_LoadedChunks; // Chunks that the player belongs to std::unordered_set<cChunkCoords, cChunkCoordsHash> m_ChunksToSend; // Chunks that need to be sent to the player (queued because they weren't generated yet or there's not enough time to send them) cChunkCoordsList m_SentChunks; // Chunks that are currently sent to the client |