From a5a73ea12d7dc7654087a45215fcac74eeda5ac4 Mon Sep 17 00:00:00 2001 From: Wuzzy Date: Sat, 9 Sep 2017 00:27:03 +0200 Subject: [PATCH] Add flower forest beach --- mods/MAPGEN/mcl_biomes/init.lua | 18 ++++++++++++++++-- 1 file changed, 16 insertions(+), 2 deletions(-) diff --git a/mods/MAPGEN/mcl_biomes/init.lua b/mods/MAPGEN/mcl_biomes/init.lua index 241205879..97f6f221c 100644 --- a/mods/MAPGEN/mcl_biomes/init.lua +++ b/mods/MAPGEN/mcl_biomes/init.lua @@ -367,12 +367,26 @@ local function register_biomes() depth_filler = 3, node_riverbed = "mcl_core:sand", depth_riverbed = 2, - y_min = 1, + y_min = 2, y_max = mcl_vars.mg_overworld_max, heat_point = 33, humidity_point = 51, }) + minetest.register_biome({ + name = "flower_forest_beach", + node_top = "mcl_core:sand", + depth_top = 1, + node_filler = "mcl_core:dirt", + depth_filler = 3, + node_riverbed = "mcl_core:sand", + depth_riverbed = 2, + y_min = -2, + y_max = 1, + heat_point = 33, + humidity_point = 51, + }) + minetest.register_biome({ name = "flower_forest_ocean", node_top = "mcl_core:dirt", @@ -382,7 +396,7 @@ local function register_biomes() node_riverbed = "mcl_core:sand", depth_riverbed = 2, y_min = mcl_vars.mg_overworld_min, - y_max = 0, + y_max = -3, heat_point = 33, humidity_point = 51, })