summaryrefslogtreecommitdiffstats
path: root/src/Generating/StructGen.cpp
diff options
context:
space:
mode:
authorpeterbell10 <peterbell10@live.co.uk>2017-05-27 14:27:31 +0200
committerLukas Pioch <lukas@zgow.de>2017-06-14 11:15:44 +0200
commit4dc72fe00b66ef7d55458f7753a186d83771222b (patch)
tree5933393c87be0984f3cec14af2896406f928f835 /src/Generating/StructGen.cpp
parentFastRandom rewrite (#3754) (diff)
downloadcuberite-4dc72fe00b66ef7d55458f7753a186d83771222b.tar
cuberite-4dc72fe00b66ef7d55458f7753a186d83771222b.tar.gz
cuberite-4dc72fe00b66ef7d55458f7753a186d83771222b.tar.bz2
cuberite-4dc72fe00b66ef7d55458f7753a186d83771222b.tar.lz
cuberite-4dc72fe00b66ef7d55458f7753a186d83771222b.tar.xz
cuberite-4dc72fe00b66ef7d55458f7753a186d83771222b.tar.zst
cuberite-4dc72fe00b66ef7d55458f7753a186d83771222b.zip
Diffstat (limited to '')
-rw-r--r--src/Generating/StructGen.cpp16
1 files changed, 1 insertions, 15 deletions
diff --git a/src/Generating/StructGen.cpp b/src/Generating/StructGen.cpp
index c1e6906fc..3e2ab8855 100644
--- a/src/Generating/StructGen.cpp
+++ b/src/Generating/StructGen.cpp
@@ -67,21 +67,7 @@ void cStructGenTrees::GenFinish(cChunkDesc & a_ChunkDesc)
} // for z
} // for x
- // Update the heightmap:
- for (int x = 0; x < cChunkDef::Width; x++)
- {
- for (int z = 0; z < cChunkDef::Width; z++)
- {
- for (HEIGHTTYPE y = cChunkDef::Height - 1; y >= 0; y--)
- {
- if (a_ChunkDesc.GetBlockType(x, y, z) != E_BLOCK_AIR)
- {
- a_ChunkDesc.SetHeight(x, z, y);
- break;
- }
- } // for y
- } // for z
- } // for x
+ a_ChunkDesc.UpdateHeightmap();
}