From f48019a87733ecd5a592eeac386a2da1a983601b Mon Sep 17 00:00:00 2001 From: Wuzzy Date: Sun, 10 Mar 2019 18:47:27 +0100 Subject: [PATCH] Use built stratum ore type for mesa strata --- mods/MAPGEN/mcl_biomes/init.lua | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/mods/MAPGEN/mcl_biomes/init.lua b/mods/MAPGEN/mcl_biomes/init.lua index 35669e870..75038ae78 100644 --- a/mods/MAPGEN/mcl_biomes/init.lua +++ b/mods/MAPGEN/mcl_biomes/init.lua @@ -1363,15 +1363,11 @@ local function register_biomelike_ores() end local y_max = y_min + height-1 minetest.register_ore({ - ore_type = "sheet", + ore_type = "stratum", ore = "mcl_colorblocks:hardened_clay_"..color, wherein = {"mcl_colorblocks:hardened_clay"}, - column_height_min = height, - column_height_max = height, y_min = y_min, y_max = y_max, - noise_threshold = -1.0, - noise_params = {offset=0, scale=1, spread={x=3100, y=3100, z=3100}, seed=seed, octaves=3, persist=0.70}, biomes = { "Mesa", "MesaPlateauF", }, }) end