Fix desert sand color

This commit is contained in:
Wuzzy 2017-08-22 00:30:34 +02:00
parent 7ed2adec3f
commit 28337b88c0
1 changed files with 4 additions and 3 deletions

View File

@ -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,