Biomes: Add 'dirt with coniferous litter' node for coniferous forest
This commit is contained in:
parent
5b57815af1
commit
8ab7c54d76
6 changed files with 24 additions and 7 deletions
|
@ -1064,7 +1064,7 @@ function default.register_biomes(upper_limit)
|
|||
minetest.register_biome({
|
||||
name = "coniferous_forest",
|
||||
--node_dust = "",
|
||||
node_top = "default:dirt_with_grass",
|
||||
node_top = "default:dirt_with_coniferous_litter",
|
||||
depth_top = 1,
|
||||
node_filler = "default:dirt",
|
||||
depth_filler = 3,
|
||||
|
@ -1613,8 +1613,7 @@ local function register_grass_decoration(offset, scale, length)
|
|||
persist = 0.6
|
||||
},
|
||||
biomes = {"grassland", "grassland_dunes", "deciduous_forest",
|
||||
"coniferous_forest", "coniferous_forest_dunes",
|
||||
"floatland_grassland"},
|
||||
"coniferous_forest_dunes", "floatland_grassland"},
|
||||
y_min = 1,
|
||||
y_max = 31000,
|
||||
decoration = "default:grass_" .. length,
|
||||
|
@ -1718,7 +1717,7 @@ function default.register_decorations()
|
|||
|
||||
minetest.register_decoration({
|
||||
deco_type = "schematic",
|
||||
place_on = {"default:dirt_with_snow", "default:dirt_with_grass"},
|
||||
place_on = {"default:dirt_with_snow", "default:dirt_with_coniferous_litter"},
|
||||
sidelen = 16,
|
||||
noise_params = {
|
||||
offset = 0.036,
|
||||
|
@ -1737,7 +1736,7 @@ function default.register_decorations()
|
|||
|
||||
minetest.register_decoration({
|
||||
deco_type = "schematic",
|
||||
place_on = {"default:dirt_with_snow", "default:dirt_with_grass"},
|
||||
place_on = {"default:dirt_with_snow", "default:dirt_with_coniferous_litter"},
|
||||
sidelen = 80,
|
||||
noise_params = {
|
||||
offset = 0.0018,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue