diff --git a/mods/MAPGEN/mcl_biomes/init.lua b/mods/MAPGEN/mcl_biomes/init.lua index 9279ce6f2..298e14cdd 100644 --- a/mods/MAPGEN/mcl_biomes/init.lua +++ b/mods/MAPGEN/mcl_biomes/init.lua @@ -326,12 +326,13 @@ local function register_biomes() -- Desert (Sand) minetest.register_biome({ name = "desert", - node_top = "mcl_core:redsand", + node_top = "mcl_core:sand", depth_top = 1, - node_filler = "mcl_core:redsand", + node_filler = "mcl_core:sand", depth_filler = 2, - node_riverbed = "mcl_core:redsand", + node_riverbed = "mcl_core:sand", depth_riverbed = 2, + node_stone = "mcl_core:sandstone", y_min = 0, y_max = mcl_vars.mg_overworld_max, heat_point = 57,