bitchange/moreores.lua
benrob0329 98a2dc8572 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
2019-01-02 23:56:46 +01:00

23 lines
561 B
Lua

-- Conversion of other ores to money
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",
})
end
if bitchange.use_moreores_tin then
bitchange.use_default_tin = true
minetest.log("warning", "[bitchange] Loaded deprecated setting 'use_default_tin'")
end
if bitchange.use_default_tin then
minetest.register_craft({
type = "cooking",
output = "bitchange:mineninth 18",
recipe = "default:tinblock"
})
end