revert cave spawn chance

This commit is contained in:
UncomfySilence 2024-02-21 15:50:16 +01:00
parent 4506fdce1a
commit fc08c172c2

View File

@ -616,7 +616,7 @@ pub fn apply_caves_supplement<'a>(
.map_or(true, |b| b.is_fluid())
})
}) {
if RandomField::new(index.seed).chance(wpos2d.into(), 0.14)
if RandomField::new(index.seed).chance(wpos2d.into(), 0.0014)
&& cave_base < surface_z - 40
{
let entity = EntityInfo::at(wpos2d.map(|e| e as f32).with_z(z as f32));