From a124becdea82ed96df557af68810368cbe947125 Mon Sep 17 00:00:00 2001 From: Wuzzy Date: Thu, 31 Aug 2017 04:15:51 +0200 Subject: [PATCH] Fix broken mesa biome (too much stone) --- mods/MAPGEN/mcl_biomes/init.lua | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/mods/MAPGEN/mcl_biomes/init.lua b/mods/MAPGEN/mcl_biomes/init.lua index 6103dcf07..b22ff7082 100644 --- a/mods/MAPGEN/mcl_biomes/init.lua +++ b/mods/MAPGEN/mcl_biomes/init.lua @@ -383,16 +383,16 @@ local function register_biomes() humidity_point = 0, }) - -- Hot biomes + -- Mesa minetest.register_biome({ name = "mesa", node_top = "mcl_colorblocks:hardened_clay", depth_top = 1, node_filler = "mcl_colorblocks:hardened_clay", - depth_filler = 1, + depth_filler = 35, node_riverbed = "mcl_core:redsand", depth_riverbed = 2, - node_stone = "mcl_core:stone", + node_stone = "mcl_colorblocks:hardened_clay", y_min = 1, y_max = mcl_vars.mg_overworld_max, heat_point = 88, @@ -402,9 +402,9 @@ local function register_biomes() minetest.register_biome({ name = "mesa_ocean", node_top = "mcl_core:redsand", - depth_top = 1, - node_filler = "mcl_core:redsand", - depth_filler = 2, + depth_top = 3, + node_filler = "mcl_colorblocks:hardened_clay", + depth_filler = 1, node_riverbed = "mcl_core:redsand", depth_riverbed = 2, y_min = mcl_vars.mg_overworld_min,