From a0264ed5e0503f8da27849bedd24301cce973c0b Mon Sep 17 00:00:00 2001 From: cora Date: Fri, 17 Jun 2022 23:30:00 +0200 Subject: [PATCH] tweak biome distribution to be more like mc according to https://www.reddit.com/r/Minecraft/comments/gjeuww/how_the_nether_biomes_are_distributed/ --- 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 ea2322a9a..ed4c1f14a 100644 --- a/mods/MAPGEN/mcl_biomes/init.lua +++ b/mods/MAPGEN/mcl_biomes/init.lua @@ -1510,8 +1510,8 @@ local function register_dimension_biomes() y_min = mcl_vars.mg_nether_min, y_max = mcl_vars.mg_nether_max + 80, - heat_point = 80, - humidity_point = 20, + heat_point = 77, + humidity_point = 33, _mcl_biome_type = "hot", _mcl_palette_index = 17, }) @@ -1561,7 +1561,7 @@ local function register_dimension_biomes() y_max = mcl_vars.mg_nether_max + 80, heat_point = 60, - humidity_point = 40, + humidity_point = 47, _mcl_biome_type = "hot", _mcl_palette_index = 17, }) @@ -1587,8 +1587,8 @@ local function register_dimension_biomes() node_cave_liquid = "air", y_min = mcl_vars.mg_nether_min, y_max = mcl_vars.mg_nether_max + 80, - heat_point = 40, - humidity_point = 60, + heat_point = 37, + humidity_point = 70, _mcl_biome_type = "hot", _mcl_palette_index = 17, }) @@ -1614,7 +1614,7 @@ local function register_dimension_biomes() node_cave_liquid = "air", y_min = mcl_vars.mg_nether_min, y_max = mcl_vars.mg_nether_max + 80, - heat_point = 20, + heat_point = 27, humidity_point = 80, _mcl_biome_type = "hot", _mcl_palette_index = 17,