Skip to content
Snippets Groups Projects
Commit 0f7728f8 authored by Sergey Gilfanov's avatar Sergey Gilfanov Committed by Perttu Ahola
Browse files

Smooth transition to the desert biome.

parent c129b385
No related branches found
No related tags found
No related merge requests found
......@@ -1297,7 +1297,9 @@ BiomeType get_biome(u64 seed, v2s16 p2d)
double d = noise2d_perlin(
0.6+(float)p2d.X/250, 0.2+(float)p2d.Y/250,
seed+9130, 3, 0.50);
if(d > 0.35)
if(d > 0.45)
return BT_DESERT;
if(d > 0.35 && (noise2d( p2d.X, p2d.Y, int(seed) ) + 1.0) > ( 0.45 - d ) * 20.0 )
return BT_DESERT;
return BT_NORMAL;
};
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment