mirror of
https://github.com/minetest/minetest.git
synced 2024-11-23 16:13:46 +01:00
Mapgen V6: Respect water_level setting
This commit is contained in:
parent
0c8bf7cf94
commit
b38afc9311
@ -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)
|
||||
|
Loading…
Reference in New Issue
Block a user