make snow appear on higher elevation in coniferous forest, fix schem/decor order

This commit is contained in:
tenplus1 2024-03-20 16:46:25 +00:00
parent b81c538191
commit a6b38705e2
2 changed files with 3 additions and 3 deletions

View File

@ -305,7 +305,7 @@ add_node({"ethereal:crystal_dirt"}, 0.001, {"frost_floatlands"}, 1025, 1750,
-- snow
add_node({"ethereal:cold_dirt", "default:dirt_with_coniferous_litter"},
0.8, {"coniferous_forest"}, 4, 40, {"default:snow"}, nil, nil, nil, ethereal.snowy)
0.8, {"coniferous_forest"}, 20, 40, {"default:snow"}, nil, nil, nil, ethereal.snowy)
add_node({"default:dirt_with_snow"}, 0.8, {"taiga"}, 40, 140,
{"default:snow"}, nil, nil, nil, ethereal.alpine)

View File

@ -7,7 +7,7 @@
]]
ethereal = {version = "20240316"}
ethereal = {version = "20240320"}
local function setting(stype, name, default)
@ -110,7 +110,6 @@ dofile(path .. "/dirt.lua")
dofile(path .. "/food.lua")
dofile(path .. "/wood.lua")
dofile(path .. "/leaves.lua")
dofile(path .. "/schems.lua")
dofile(path .. "/sapling.lua")
dofile(path .. "/fishing.lua")
dofile(path .. "/extra.lua")
@ -123,6 +122,7 @@ end
dofile(path .. "/biomes.lua")
dofile(path .. "/ores.lua")
dofile(path .. "/schems.lua")
dofile(path .. "/decor.lua")
dofile(path .. "/compatibility.lua")
dofile(path .. "/stairs.lua")