Skip to content

Commit

Permalink
in MCL sulfur is generated in the nether
Browse files Browse the repository at this point in the history
  • Loading branch information
nonfreegithub committed Sep 16, 2023
1 parent 1ad7780 commit 6ee01e6
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions technic_worldgen/oregen.lua
Original file line number Diff line number Diff line change
Expand Up @@ -196,6 +196,19 @@ minetest.register_on_generated(function(minp, maxp)
vm:write_to_map(sulfur_buf)
end)

-- in MCL sulfur is generated in the nether
if has_mcl then
minetest.register_ore({
ore_type = "scatter",
ore = "technic:mineral_sulfur",
wherein = {"mcl_nether:netherrack", "mcl_blackstone:blackstone"},
clust_scarcity = 830,
clust_num_ores = 5,
clust_size = 3,
y_min = mcl_vars.mg_nether_min,
y_max = mcl_vars.mg_nether_max,
})
end

if technic.config:get_bool("enable_marble_generation") then
minetest.register_ore({
Expand Down

0 comments on commit 6ee01e6

Please sign in to comment.