Remove disintigration bombs.
This commit is contained in:
parent
e9765fabfc
commit
52d4311071
2 changed files with 4 additions and 113 deletions
|
@ -336,17 +336,17 @@ fun_caves.treegen = function(minp, maxp, data, p2data, area, node)
|
|||
if distance < r then
|
||||
if distance % 8 == 7 and wood_1[index3d] < 0.3 then
|
||||
data[ivm] = node['fun_caves:petrified_wood']
|
||||
elseif wood_1[index3d] < -1.1 then
|
||||
data[ivm] = node['fun_caves:weightless_water']
|
||||
elseif wood_1[index3d] < -0.9 then
|
||||
data[ivm] = node['fun_caves:weightless_water']
|
||||
elseif wood_1[index3d] < -0.8 then
|
||||
data[ivm] = node['air']
|
||||
elseif wood_1[index3d] < -0.1 then
|
||||
data[ivm] = node['fun_caves:tree']
|
||||
elseif wood_1[index3d] < 0.1 then
|
||||
data[ivm] = node['air']
|
||||
elseif wood_1[index3d] < 0.9 then
|
||||
elseif wood_1[index3d] < 0.7 then
|
||||
data[ivm] = node['fun_caves:tree']
|
||||
elseif wood_1[index3d] < 1.3 then
|
||||
elseif wood_1[index3d] < 1.2 then
|
||||
data[ivm] = node['fun_caves:ironwood']
|
||||
else
|
||||
data[ivm] = node['fun_caves:diamondwood']
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue