forked from Mineclonia/Mineclonia
Fix Mesa stratum regression
This commit is contained in:
parent
7dcc39be72
commit
66e1abf1dc
|
@ -1282,7 +1282,7 @@ local function register_biomelike_ores()
|
||||||
ore_type = "sheet",
|
ore_type = "sheet",
|
||||||
ore = "mcl_core:stone",
|
ore = "mcl_core:stone",
|
||||||
noise_threshold = -100,
|
noise_threshold = -100,
|
||||||
noise_params = {offset=0, scale=1, spread={x=3100, y=3100, z=3100}, seed=seed, octaves=1, persist=1.00},
|
noise_params = {offset=0, scale=1, spread={x=3100, y=3100, z=3100}, octaves=1, persist=1.00},
|
||||||
biomes = {
|
biomes = {
|
||||||
"Mesa", "Mesa_sandlevel", "Mesa_ocean", "Mesa_deep_ocean", "Mesa_underground",
|
"Mesa", "Mesa_sandlevel", "Mesa_ocean", "Mesa_deep_ocean", "Mesa_underground",
|
||||||
"MesaPlateauF", "MesaPlateauF_sandlevel", "MesaPlateauF_ocean", "MesaPlateauF_deep_ocean", "MesaPlateauF_underground",
|
"MesaPlateauF", "MesaPlateauF_sandlevel", "MesaPlateauF_ocean", "MesaPlateauF_deep_ocean", "MesaPlateauF_underground",
|
||||||
|
@ -1301,14 +1301,6 @@ local function register_biomelike_ores()
|
||||||
-- Helper function to create strata.
|
-- Helper function to create strata.
|
||||||
-- Available Mesa colors: silver (light grey), brown, orange, red, yellow, white
|
-- Available Mesa colors: silver (light grey), brown, orange, red, yellow, white
|
||||||
local stratum = function(y_min, height, color, seed)
|
local stratum = function(y_min, height, color, seed)
|
||||||
|
|
||||||
local ore = "mcl_colorblocks:hardened_clay_"..color
|
|
||||||
local noise_threshold = -1
|
|
||||||
local noise_params = {offset=0, scale=1, spread={x=3100, y=3100, z=3100}, seed=seed, octaves=3, persist=0.70}
|
|
||||||
local biomes = {
|
|
||||||
"Mesa", "Mesa_sandlevel", "Mesa_ocean", "Mesa_deep_ocean", "Mesa_underground",
|
|
||||||
}
|
|
||||||
|
|
||||||
if not height then
|
if not height then
|
||||||
height = 1
|
height = 1
|
||||||
end
|
end
|
||||||
|
@ -1318,20 +1310,18 @@ local function register_biomelike_ores()
|
||||||
local y_max = y_min + height-1
|
local y_max = y_min + height-1
|
||||||
minetest.register_ore({
|
minetest.register_ore({
|
||||||
ore_type = "sheet",
|
ore_type = "sheet",
|
||||||
ore = ore,
|
ore = "mcl_colorblocks:hardened_clay_"..color,
|
||||||
wherein = {"mcl_colorblocks:hardened_clay"},
|
wherein = {"mcl_colorblocks:hardened_clay"},
|
||||||
column_height_min = height,
|
column_height_min = height,
|
||||||
column_height_max = height,
|
column_height_max = height,
|
||||||
y_min = y_min,
|
y_min = y_min,
|
||||||
y_max = y_max,
|
y_max = y_max,
|
||||||
noise_threshold = noise_threshold,
|
noise_threshold = -1.0,
|
||||||
noise_params = noise_param,
|
noise_params = {offset=0, scale=1, spread={x=3100, y=3100, z=3100}, seed=seed, octaves=3, persist=0.70},
|
||||||
biomes = biomes,
|
biomes = { "Mesa", "MesaPlateauF", },
|
||||||
})
|
})
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
stratum(11, 3, "orange")
|
stratum(11, 3, "orange")
|
||||||
|
|
||||||
-- Create strata for up to Y = 256
|
-- Create strata for up to Y = 256
|
||||||
|
|
Loading…
Reference in New Issue