2017-11-25 11:38:52 +01:00
|
|
|
-- Conversion of other ores to money
|
2014-01-08 17:02:04 +01:00
|
|
|
|
2015-04-16 15:06:02 +02:00
|
|
|
if bitchange.use_technic_zinc and minetest.get_modpath("technic_worldgen") then
|
2014-01-08 17:02:04 +01:00
|
|
|
minetest.register_craft({
|
2019-01-02 23:56:46 +01:00
|
|
|
type = "cooking",
|
2017-11-25 11:38:52 +01:00
|
|
|
output = "bitchange:mineninth 8",
|
2019-01-02 23:56:46 +01:00
|
|
|
recipe = "technic:zinc_block",
|
2014-01-18 15:39:01 +01:00
|
|
|
})
|
2018-12-29 14:37:53 +01:00
|
|
|
end
|
|
|
|
|
2018-12-29 14:47:17 +01:00
|
|
|
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({
|
2019-01-02 23:56:46 +01:00
|
|
|
type = "cooking",
|
2018-12-29 14:37:53 +01:00
|
|
|
output = "bitchange:mineninth 18",
|
2019-01-02 23:56:46 +01:00
|
|
|
recipe = "default:tinblock"
|
2018-12-29 14:37:53 +01:00
|
|
|
})
|
|
|
|
end
|