From 28337b88c06cda742c427ea6aa54625d64b91691 Mon Sep 17 00:00:00 2001 From: Wuzzy Date: Tue, 22 Aug 2017 00:30:34 +0200 Subject: [PATCH] Fix desert sand color --- mods/MAPGEN/mcl_biomes/init.lua | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) 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,