Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Mapgen V6: Respect water_level setting
  • Loading branch information
kwolekr committed Nov 21, 2013
1 parent 0c8bf7c commit b38afc9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/mapgen_v6.cpp
Expand Up @@ -149,8 +149,8 @@ bool MapgenV6::block_is_underground(u64 seed, v3s16 blockpos)

float MapgenV6::baseTerrainLevel(float terrain_base, float terrain_higher,
float steepness, float height_select) {
float base = water_level + terrain_base;
float higher = water_level + terrain_higher;
float base = 1 + terrain_base;
float higher = 1 + terrain_higher;

// Limit higher ground level to at least base
if(higher < base)
Expand Down

0 comments on commit b38afc9

Please sign in to comment.