diff --git a/src/graphics/render/WorldRenderer.cpp b/src/graphics/render/WorldRenderer.cpp index 36c879a5..1f5864bc 100644 --- a/src/graphics/render/WorldRenderer.cpp +++ b/src/graphics/render/WorldRenderer.cpp @@ -154,7 +154,7 @@ void WorldRenderer::drawChunks( for (auto& index : indices) { float x = index.index % chunksWidth + chunksOffsetX - px; float z = index.index / chunksWidth + chunksOffsetY - pz; - index.d = (x * x + z * z) * 16; + index.d = (x * x + z * z) * 1024; } util::insertion_sort(indices.begin(), indices.end());