a few more biome tweaks

This commit is contained in:
FaceDeer
2017-03-25 11:48:27 -06:00
parent a95074f5b4
commit 0f3488849d
4 changed files with 19 additions and 16 deletions

View File

@@ -94,11 +94,11 @@ local level_1_wet_floor = function(area, data, ai, vi, bi, param2_data)
return
end
if math.random() < 0.25 then
if math.random() < 0.5 then
data[bi] = c_mossycobble
if math.random() < 0.1 then
if math.random() < 0.05 then
data[vi] = c_dead_fungus
elseif math.random() < 0.1 then
elseif math.random() < 0.05 then
data[vi] = c_cavern_fungi
end
end