summaryrefslogtreecommitdiffstats
path: root/src/Generating/ChunkGenerator.cpp
diff options
context:
space:
mode:
authorLO1ZB <andreasdaamen@web.de>2014-08-29 20:19:45 +0200
committerLO1ZB <andreasdaamen@web.de>2014-08-29 20:19:45 +0200
commit75e131638616c68d126eb64abdf903a93dd7322f (patch)
tree2b8e047e67d21e4d642cd856bdbcab0c1689e94a /src/Generating/ChunkGenerator.cpp
parentremove y-coord from chunks (diff)
downloadcuberite-75e131638616c68d126eb64abdf903a93dd7322f.tar
cuberite-75e131638616c68d126eb64abdf903a93dd7322f.tar.gz
cuberite-75e131638616c68d126eb64abdf903a93dd7322f.tar.bz2
cuberite-75e131638616c68d126eb64abdf903a93dd7322f.tar.lz
cuberite-75e131638616c68d126eb64abdf903a93dd7322f.tar.xz
cuberite-75e131638616c68d126eb64abdf903a93dd7322f.tar.zst
cuberite-75e131638616c68d126eb64abdf903a93dd7322f.zip
Diffstat (limited to 'src/Generating/ChunkGenerator.cpp')
-rw-r--r--src/Generating/ChunkGenerator.cpp8
1 files changed, 0 insertions, 8 deletions
diff --git a/src/Generating/ChunkGenerator.cpp b/src/Generating/ChunkGenerator.cpp
index 4d0cf3192..a1c3d50cc 100644
--- a/src/Generating/ChunkGenerator.cpp
+++ b/src/Generating/ChunkGenerator.cpp
@@ -245,14 +245,6 @@ void cChunkGenerator::Execute(void)
LastReportTick = clock();
}
- // Hack for regenerating chunks: if Y != 0, the chunk is considered invalid, even if it has its data set
- if (m_ChunkSink->IsChunkValid(coords.m_ChunkX, coords.m_ChunkZ))
- {
- LOGD("Chunk [%d, %d] already generated, skipping generation", coords.m_ChunkX, coords.m_ChunkZ);
- // Already generated, ignore request
- continue;
- }
-
if (SkipEnabled && !m_ChunkSink->HasChunkAnyClients(coords.m_ChunkX, coords.m_ChunkZ))
{
LOGWARNING("Chunk generator overloaded, skipping chunk [%d, %d]", coords.m_ChunkX, coords.m_ChunkZ);