diff options
author | LO1ZB <andreasdaamen@web.de> | 2014-09-03 00:28:08 +0200 |
---|---|---|
committer | LO1ZB <andreasdaamen@web.de> | 2014-09-03 00:28:08 +0200 |
commit | 554f58501733f00f54e88190bc8ad85bfb11b84f (patch) | |
tree | 34070160e1c89cf9580a07ac1aa012d2ed4e303c /src/Generating/ChunkGenerator.cpp | |
parent | hopefully the last commit for removing y-coord from chunks. :) (diff) | |
download | cuberite-554f58501733f00f54e88190bc8ad85bfb11b84f.tar cuberite-554f58501733f00f54e88190bc8ad85bfb11b84f.tar.gz cuberite-554f58501733f00f54e88190bc8ad85bfb11b84f.tar.bz2 cuberite-554f58501733f00f54e88190bc8ad85bfb11b84f.tar.lz cuberite-554f58501733f00f54e88190bc8ad85bfb11b84f.tar.xz cuberite-554f58501733f00f54e88190bc8ad85bfb11b84f.tar.zst cuberite-554f58501733f00f54e88190bc8ad85bfb11b84f.zip |
Diffstat (limited to 'src/Generating/ChunkGenerator.cpp')
-rw-r--r-- | src/Generating/ChunkGenerator.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Generating/ChunkGenerator.cpp b/src/Generating/ChunkGenerator.cpp index 6216958d2..d39b44733 100644 --- a/src/Generating/ChunkGenerator.cpp +++ b/src/Generating/ChunkGenerator.cpp @@ -105,7 +105,7 @@ void cChunkGenerator::QueueGenerateChunk(int a_ChunkX, int a_ChunkZ, bool a_Forc cCSLock Lock(m_CS); // Check if it is already in the queue: - for (cChunkCoordWithBoolList::iterator itr = m_Queue.begin(); itr != m_Queue.end(); ++itr) + for (cChunkCoordsWithBoolList::iterator itr = m_Queue.begin(); itr != m_Queue.end(); ++itr) { if ((itr->m_ChunkX == a_ChunkX) && (itr->m_ChunkZ == a_ChunkZ)) { |