summaryrefslogtreecommitdiffstats
path: root/source/Generating/ChunkDesc.cpp
diff options
context:
space:
mode:
authormadmaxoft@gmail.com <madmaxoft@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6>2013-05-05 13:42:09 +0200
committermadmaxoft@gmail.com <madmaxoft@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6>2013-05-05 13:42:09 +0200
commitd303a60e110bbecd29ab65fb6173e77891a413e6 (patch)
treef0afdd57e46f06b553d133c01a57dff5711aa845 /source/Generating/ChunkDesc.cpp
parentEntity: Now entites inside a cobweb slow down their speed (diff)
downloadcuberite-d303a60e110bbecd29ab65fb6173e77891a413e6.tar
cuberite-d303a60e110bbecd29ab65fb6173e77891a413e6.tar.gz
cuberite-d303a60e110bbecd29ab65fb6173e77891a413e6.tar.bz2
cuberite-d303a60e110bbecd29ab65fb6173e77891a413e6.tar.lz
cuberite-d303a60e110bbecd29ab65fb6173e77891a413e6.tar.xz
cuberite-d303a60e110bbecd29ab65fb6173e77891a413e6.tar.zst
cuberite-d303a60e110bbecd29ab65fb6173e77891a413e6.zip
Diffstat (limited to '')
-rw-r--r--source/Generating/ChunkDesc.cpp27
1 files changed, 27 insertions, 0 deletions
diff --git a/source/Generating/ChunkDesc.cpp b/source/Generating/ChunkDesc.cpp
index 68feb463d..ff331e6e4 100644
--- a/source/Generating/ChunkDesc.cpp
+++ b/source/Generating/ChunkDesc.cpp
@@ -547,3 +547,30 @@ void cChunkDesc::CompressBlockMetas(cChunkDef::BlockNibbles & a_DestMetas)
+
+#ifdef _DEBUG
+
+void cChunkDesc::VerifyHeightmap(void)
+{
+ for (int x = 0; x < cChunkDef::Width; x++)
+ {
+ for (int z = 0; z < cChunkDef::Width; z++)
+ {
+ for (int y = cChunkDef::Height - 1; y > 0; y--)
+ {
+ if (GetBlockType(x, y, z) != E_BLOCK_AIR)
+ {
+ ASSERT(GetHeight(x, z) == y);
+ break;
+ }
+ } // for y
+ } // for z
+ } // for x
+}
+
+#endif // _DEBUG
+
+
+
+
+