From fa75eda9cf5bf448a3b148ab63e4b7cead0baf7f Mon Sep 17 00:00:00 2001 From: Wuzzy Date: Sat, 9 Sep 2017 19:01:04 +0200 Subject: [PATCH] Add stone beach biome --- mods/MAPGEN/mcl_biomes/init.lua | 23 +++++++++++++++++++++-- 1 file changed, 21 insertions(+), 2 deletions(-) diff --git a/mods/MAPGEN/mcl_biomes/init.lua b/mods/MAPGEN/mcl_biomes/init.lua index 487b782c8..b6d4fe4db 100644 --- a/mods/MAPGEN/mcl_biomes/init.lua +++ b/mods/MAPGEN/mcl_biomes/init.lua @@ -285,8 +285,27 @@ local function register_biomes() humidity_point = 35, }) - - + -- Stone beach + minetest.register_biome({ + name = "stone_beach", + y_min = -6, + y_max = mcl_vars.mg_overworld_max, + heat_point = 31, + humidity_point = 15, + }) + minetest.register_biome({ + name = "stone_beach_ocean", + node_top = "mcl_core:dirt", + depth_top = 1, + node_filler = "mcl_core:dirt", + filler_depth = 2, + node_riverbed = "mcl_core:sand", + depth_riverbed = 1, + y_min = mcl_vars.mg_overworld_min, + y_max = -7, + heat_point = 31, + humidity_point = 15, + }) -- Ice plains minetest.register_biome({