Skip to content

Commit

Permalink
Mgvalleys: Use existing 'lava_max_height' value in CavesRandomWalk
Browse files Browse the repository at this point in the history
Now that lava depth in large caves is variable we can use the already
present 'lava_max_height' value to set the lava depth in them.
  • Loading branch information
paramat committed Jun 24, 2017
1 parent 08f57e1 commit 9a77397
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/mapgen_valleys.cpp
Expand Up @@ -733,7 +733,7 @@ void MapgenValleys::generateCaves(s16 max_stone_y, s16 large_cave_depth)
u32 bruises_count = ps.range(0, 2);
for (u32 i = 0; i < bruises_count; i++) {
CavesRandomWalk cave(ndef, &gennotify, seed, water_level,
c_water_source, c_lava_source);
c_water_source, c_lava_source, lava_max_height);

cave.makeCave(vm, node_min, node_max, &ps, true, max_stone_y, heightmap);
}
Expand Down

0 comments on commit 9a77397

Please sign in to comment.