summaryrefslogtreecommitdiff
path: root/src/mapgen_v7.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mapgen_v7.cpp')
-rw-r--r--src/mapgen_v7.cpp4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/mapgen_v7.cpp b/src/mapgen_v7.cpp
index 2439c95b3..301922be5 100644
--- a/src/mapgen_v7.cpp
+++ b/src/mapgen_v7.cpp
@@ -132,8 +132,6 @@ int MapgenV7::getGroundLevelAtPoint(v2s16 p) {
y--;
}
- if (iters == 0)
- printf("iters exhausted at %d %d\n", p.X, p.Y);
return y + b->top_depth;
}
@@ -442,7 +440,7 @@ void MapgenV7::addTopNodes() {
continue;
}
- // N.B. It is necessary to search downward since range_heightmap[i]
+ // N.B. It is necessary to search downward since ridge_heightmap[i]
// might not be the actual height, just the lowest part in the chunk
// where a ridge had been carved
u32 i = vm->m_area.index(x, y, z);