diff --git a/config.default.txt b/config.default.txt index ac4f499..0fa9ce5 100644 --- a/config.default.txt +++ b/config.default.txt @@ -13,9 +13,9 @@ bitchange.enable_donationbox = true -- Tin moreores -- Zinc technic_worldgen -- Quartz quartz -bitchange.use_moreores_tin = false bitchange.use_technic_zinc = false bitchange.use_quartz = false +bitchange.use_default_tin = false -- Pipeworks support bitchange.exchangeshop_pipeworks = false diff --git a/moreores.lua b/moreores.lua index 98bd0f9..2cb6b9c 100644 --- a/moreores.lua +++ b/moreores.lua @@ -1,16 +1,5 @@ -- Conversion of other ores to money -if bitchange.use_moreores_tin and minetest.get_modpath("moreores") then - minetest.register_craft({ - output = "bitchange:mineninth 18", - recipe = { - {"moreores:tin_block", "default:pick_diamond"}, - {"moreores:tin_block", ""} - }, - replacements = { {"default:pick_diamond", "default:pick_diamond"} } - }) -end - if bitchange.use_technic_zinc and minetest.get_modpath("technic_worldgen") then minetest.register_craft({ output = "bitchange:mineninth 8", @@ -32,4 +21,15 @@ if bitchange.use_quartz and minetest.get_modpath("quartz") then }, replacements = { {"default:pick_diamond", "default:pick_diamond"} } }) -end \ No newline at end of file +end + +if bitchange.use_default_tin then + minetest.register_craft({ + output = "bitchange:mineninth 18", + recipe = { + {"default:tinblock", "default:pick_diamond"}, + {"default:tinblock", ""} + }, + replacements = { {"default:pick_diamond", "default:pick_diamond"} } + }) +end