mirror of
https://git.minetest.land/VoxeLibre/VoxeLibre.git
synced 2024-12-01 15:01:06 +01:00
Fix snow cover in v7 mapgen
This commit is contained in:
parent
609a967c32
commit
9843e60efc
1 changed files with 3 additions and 2 deletions
|
@ -25,7 +25,7 @@ local function register_biomes()
|
||||||
minetest.register_biome({
|
minetest.register_biome({
|
||||||
name = "ice_plains",
|
name = "ice_plains",
|
||||||
node_dust = "mcl_core:snow",
|
node_dust = "mcl_core:snow",
|
||||||
node_top = "mcl_core:dirt",
|
node_top = "mcl_core:dirt_with_grass_snow",
|
||||||
depth_top = 1,
|
depth_top = 1,
|
||||||
node_filler = "mcl_core:dirt",
|
node_filler = "mcl_core:dirt",
|
||||||
depth_filler = 3,
|
depth_filler = 3,
|
||||||
|
@ -39,7 +39,8 @@ local function register_biomes()
|
||||||
|
|
||||||
minetest.register_biome({
|
minetest.register_biome({
|
||||||
name = "ice_plains2",
|
name = "ice_plains2",
|
||||||
node_top = "mcl_core:snowblock",
|
node_dust = "mcl_core:snowblock",
|
||||||
|
node_top = "mcl_core:dirt_with_grass_snow",
|
||||||
depth_top = 1,
|
depth_top = 1,
|
||||||
node_filler = "mcl_core:dirt",
|
node_filler = "mcl_core:dirt",
|
||||||
depth_filler = 3,
|
depth_filler = 3,
|
||||||
|
|
Loading…
Reference in a new issue