Biomes: Make beaches snowy in snowy biomes

This commit is contained in:
Paramat 2018-06-01 22:39:50 +01:00 committed by GitHub
parent ed1d64d8aa
commit e74e091e78
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 6 additions and 3 deletions

View File

@ -1022,6 +1022,7 @@ function default.register_biomes(upper_limit)
minetest.register_biome({ minetest.register_biome({
name = "taiga_ocean", name = "taiga_ocean",
node_dust = "default:snow",
node_top = "default:sand", node_top = "default:sand",
depth_top = 1, depth_top = 1,
node_filler = "default:sand", node_filler = "default:sand",
@ -1054,6 +1055,7 @@ function default.register_biomes(upper_limit)
minetest.register_biome({ minetest.register_biome({
name = "snowy_grassland_ocean", name = "snowy_grassland_ocean",
node_dust = "default:snow",
node_top = "default:sand", node_top = "default:sand",
depth_top = 1, depth_top = 1,
node_filler = "default:sand", node_filler = "default:sand",
@ -2083,7 +2085,8 @@ function default.register_decorations()
place_on = { place_on = {
"default:permafrost_with_moss", "default:permafrost_with_moss",
"default:permafrost_with_stones", "default:permafrost_with_stones",
"default:stone" "default:stone",
"default:gravel"
}, },
sidelen = 4, sidelen = 4,
noise_params = { noise_params = {
@ -2094,9 +2097,9 @@ function default.register_decorations()
octaves = 3, octaves = 3,
persist = 1.0 persist = 1.0
}, },
biomes = {"tundra"}, biomes = {"tundra", "tundra_beach"},
y_max = 50, y_max = 50,
y_min = 2, y_min = 1,
decoration = "default:snow", decoration = "default:snow",
}) })