Adjust cloud generation.
This commit is contained in:
parent
30d5f9ce96
commit
03f29b1cd8
1 changed files with 26 additions and 28 deletions
|
@ -47,17 +47,16 @@ fun_caves.cloudgen = function(minp, maxp, data, p2data, area, node)
|
|||
end
|
||||
|
||||
cloud_1[index] = floor(cloud_1[index] + 0.5)
|
||||
if cloud_1[index] > 0 then
|
||||
for y = minp.y, maxp.y do
|
||||
local dy = y - minp.y
|
||||
if dy > 32 and cloud_1[index] > 15 and dy < 47 then
|
||||
if dy < 47 - (cloud_1[index] - 15) then
|
||||
if dy < 48 - (cloud_1[index] - 15) then
|
||||
data[ivm] = node['fun_caves:'..cloud]
|
||||
else
|
||||
data[ivm] = node['default:water_source']
|
||||
write = true
|
||||
end
|
||||
elseif (dy <= 32 or cloud_1[index] <= 15) and dy >= 32 - cloud_1[index] and dy <= 32 + cloud_1[index] then
|
||||
elseif cloud_1[index] > 0 and (dy <= 32 or cloud_1[index] <= 15) and dy >= 32 - cloud_1[index] and dy <= 32 + cloud_1[index] then
|
||||
data[ivm] = node['fun_caves:'..cloud]
|
||||
write = true
|
||||
elseif data[ivm - area.ystride] == node['fun_caves:'..cloud] and data[ivm] == node['air'] then
|
||||
|
@ -81,7 +80,6 @@ fun_caves.cloudgen = function(minp, maxp, data, p2data, area, node)
|
|||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
local index = 0
|
||||
local index3d = 0
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue