bitchange/moreores.lua

23 lines
561 B
Lua
Raw Normal View History

-- Conversion of other ores to money
2014-01-08 17:02:04 +01:00
if bitchange.use_technic_zinc and minetest.get_modpath("technic_worldgen") then
2014-01-08 17:02:04 +01:00
minetest.register_craft({
type = "cooking",
output = "bitchange:mineninth 8",
recipe = "technic:zinc_block",
2014-01-18 15:39:01 +01:00
})
2018-12-29 14:37:53 +01:00
end
if bitchange.use_moreores_tin then
bitchange.use_default_tin = true
minetest.log("warning", "[bitchange] Loaded deprecated setting 'use_default_tin'")
end
2018-12-29 14:37:53 +01:00
if bitchange.use_default_tin then
minetest.register_craft({
type = "cooking",
2018-12-29 14:37:53 +01:00
output = "bitchange:mineninth 18",
recipe = "default:tinblock"
2018-12-29 14:37:53 +01:00
})
end