diff options
| author | kwolekr <kwolekr@minetest.net> | 2013-06-22 17:27:48 -0400 |
|---|---|---|
| committer | kwolekr <kwolekr@minetest.net> | 2013-06-22 17:27:48 -0400 |
| commit | 4d77781ce7cba571701e731b1f442af691933720 (patch) | |
| tree | f5f4d419e774031c03031a91644de8e35af77835 /src/mapgen_v7.cpp | |
| parent | c1b829077a3518f3a129eee11887b2358a53f20b (diff) | |
| download | minetest-4d77781ce7cba571701e731b1f442af691933720.tar.xz | |
A handful of minor fixes to various things
Diffstat (limited to 'src/mapgen_v7.cpp')
| -rw-r--r-- | src/mapgen_v7.cpp | 4 |
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); |
