mirror of
https://github.com/luanti-org/luanti.git
synced 2025-06-27 16:36:03 +00:00
Mgv7: Limit pseudorandom caves to surface mapchunk or below
To avoid bright caves at mapchunk borders when generating mapchunks upwards
This commit is contained in:
parent
c5c727d627
commit
f1aea6b4ff
1 changed files with 3 additions and 0 deletions
|
@ -912,6 +912,9 @@ void MapgenV7::generateCaves(s16 max_stone_y)
|
|||
}
|
||||
}
|
||||
|
||||
if (node_min.Y >= water_level)
|
||||
return;
|
||||
|
||||
PseudoRandom ps(blockseed + 21343);
|
||||
u32 bruises_count = ps.range(0, 2);
|
||||
for (u32 i = 0; i < bruises_count; i++) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue