From c79b1062cca3e3f13e51b550a98839738bff87ea Mon Sep 17 00:00:00 2001 From: Wuzzy Date: Wed, 15 Nov 2017 02:30:30 +0100 Subject: [PATCH] Add small beach to plains biomes --- mods/MAPGEN/mcl_biomes/init.lua | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/mods/MAPGEN/mcl_biomes/init.lua b/mods/MAPGEN/mcl_biomes/init.lua index bea69034d..8387a02ca 100644 --- a/mods/MAPGEN/mcl_biomes/init.lua +++ b/mods/MAPGEN/mcl_biomes/init.lua @@ -456,7 +456,7 @@ local function register_biomes() depth_filler = 2, node_riverbed = "mcl_core:sand", depth_riverbed = 2, - y_min = 4, + y_min = 3, y_max = mcl_vars.mg_overworld_max, humidity_point = 39, heat_point = 58, @@ -469,8 +469,8 @@ local function register_biomes() depth_filler = 2, node_riverbed = "mcl_core:sand", depth_riverbed = 2, - y_min = 3, - y_max = 1, + y_min = 0, + y_max = 2, humidity_point = 39, heat_point = 58, }) @@ -483,7 +483,7 @@ local function register_biomes() node_riverbed = "mcl_core:sand", depth_riverbed = 2, y_min = OCEAN_MIN, - y_max = 0, + y_max = -1, humidity_point = 39, heat_point = 58, })