Fix snow cover in v7 mapgen

This commit is contained in:
Wuzzy 2017-05-15 21:09:06 +02:00
parent 609a967c32
commit 9843e60efc
1 changed files with 3 additions and 2 deletions

View File

@ -25,7 +25,7 @@ local function register_biomes()
minetest.register_biome({
name = "ice_plains",
node_dust = "mcl_core:snow",
node_top = "mcl_core:dirt",
node_top = "mcl_core:dirt_with_grass_snow",
depth_top = 1,
node_filler = "mcl_core:dirt",
depth_filler = 3,
@ -39,7 +39,8 @@ local function register_biomes()
minetest.register_biome({
name = "ice_plains2",
node_top = "mcl_core:snowblock",
node_dust = "mcl_core:snowblock",
node_top = "mcl_core:dirt_with_grass_snow",
depth_top = 1,
node_filler = "mcl_core:dirt",
depth_filler = 3,