This commit is contained in:
Xeno333 2024-11-14 19:32:24 -06:00
parent be2b604c19
commit b1631ae4dd
5 changed files with 2 additions and 2 deletions

BIN
menu/background.5.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 MiB

BIN
menu/background.6.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 MiB

BIN
menu/background.7.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 MiB

BIN
menu/background.8.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 MiB

View File

@ -91,7 +91,7 @@ local function dec(pr, x, y, z, data, area, place_list, tempv, cave)
data[area:index(x, y+1, z)] = sticks
-- Small tree
elseif c > 995 and y > water_level+3 then
elseif c > 995 and y > water_level+3 and tempv >= 3 then
place_list[#place_list+1] = {vector.new(x-4,y,z-4), schematic_path .. "tree_plain_1.mts", "random", nil, false}
-- Big tree
@ -113,7 +113,7 @@ local function dec(pr, x, y, z, data, area, place_list, tempv, cave)
data[area:index(x, y+1, z)] = grass_snowy
elseif y >= water_level+3 and tempv >= -15 and c >= 990+(tempv/4) then
place_list[#place_list+1] = {vector.new(x-7,y-1,z-7), schematic_path .. "big_tree_light_1.mts", "random", nil, true}
place_list[#place_list+1] = {vector.new(x-7,y-1,z-7), schematic_path .. "big_tree_light_1.mts", "random", nil, false}
end
end