mirror of
https://github.com/SmallJoker/bitchange.git
synced 2025-07-20 09:00:24 +02:00
Refactoring, enable tin by default, remove ore generation (#14)
Remove Ore Generation Disable Crafting Currency By Default Make All Currency Smelted From Ore Enable Tin Smelting By Default
This commit is contained in:
26
moreores.lua
26
moreores.lua
@ -2,24 +2,9 @@
|
||||
|
||||
if bitchange.use_technic_zinc and minetest.get_modpath("technic_worldgen") then
|
||||
minetest.register_craft({
|
||||
type = "cooking",
|
||||
output = "bitchange:mineninth 8",
|
||||
recipe = {
|
||||
{"technic:zinc_block", "default:pick_diamond"},
|
||||
{"technic:zinc_block", ""}
|
||||
},
|
||||
replacements = { {"default:pick_diamond", "default:pick_diamond"} }
|
||||
})
|
||||
end
|
||||
|
||||
if bitchange.use_quartz and minetest.get_modpath("quartz") then
|
||||
minetest.register_craft({
|
||||
output = "bitchange:mineninth",
|
||||
recipe = {
|
||||
{"quartz:quartz_crystal", "default:pick_diamond"},
|
||||
{"quartz:quartz_crystal", "quartz:quartz_crystal"},
|
||||
{"quartz:quartz_crystal", "quartz:quartz_crystal"}
|
||||
},
|
||||
replacements = { {"default:pick_diamond", "default:pick_diamond"} }
|
||||
recipe = "technic:zinc_block",
|
||||
})
|
||||
end
|
||||
|
||||
@ -30,11 +15,8 @@ end
|
||||
|
||||
if bitchange.use_default_tin then
|
||||
minetest.register_craft({
|
||||
type = "cooking",
|
||||
output = "bitchange:mineninth 18",
|
||||
recipe = {
|
||||
{"default:tinblock", "default:pick_diamond"},
|
||||
{"default:tinblock", ""}
|
||||
},
|
||||
replacements = { {"default:pick_diamond", "default:pick_diamond"} }
|
||||
recipe = "default:tinblock"
|
||||
})
|
||||
end
|
||||
|
Reference in New Issue
Block a user