Add ancient debris generation in nether

This commit is contained in:
Code-Sploit 2021-04-16 10:03:31 +00:00
parent e7f36ec7d2
commit 622c236b4b
1 changed files with 14 additions and 0 deletions

View File

@ -2068,6 +2068,20 @@ local function register_dimension_ores()
})
end
-- Ancient debris
if minetest.settings:get_bool("mcl_generate_ores", true) then
minetest.register_ore({
ore_type = "scatter",
ore = "mcl_nether:ancient_debris",
wherein = {"mcl_nether:netherrack"},
clust_scarcity = 10000,
clust_num_ores = 4,
clust_size = 1,
y_min = mcl_worlds.layer_to_y(8, "nether"),
y_max = mcl_worlds.layer_to_y(119, "nether"),
})
end
-- Lava springs in the Nether
minetest.register_ore({
ore_type = "scatter",