From e02f3071bc447f063ce9612d7705234b8846fe3f Mon Sep 17 00:00:00 2001 From: Wuzzy Date: Sun, 3 Sep 2017 14:34:03 +0200 Subject: [PATCH] Place moss boulders in low levels as well --- 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 0d0651734..b166109d5 100644 --- a/mods/MAPGEN/mcl_biomes/init.lua +++ b/mods/MAPGEN/mcl_biomes/init.lua @@ -1335,8 +1335,8 @@ local function register_decorations() octaves = 4, persist = 0.63, }, - biomes = {"taiga"}, - y_min = 7, + biomes = {"taiga", "mega_taiga"}, + y_min = 1, y_max = mcl_vars.mg_overworld_max, schematic = minetest.get_modpath("mcl_structures").."/schematics/mcl_structures_boulder.mts", }) @@ -1354,8 +1354,8 @@ local function register_decorations() octaves = 4, persist = 0.63, }, - biomes = {"taiga"}, - y_min = 6, + biomes = {"taiga", "mega_taiga"}, + y_min = 1, y_max = mcl_vars.mg_overworld_max, schematic = minetest.get_modpath("mcl_structures").."/schematics/mcl_structures_boulder_small.mts", })