mirror of
https://github.com/SmallJoker/bitchange.git
synced 2025-07-20 09:00:24 +02:00
Add default tin conversion (#13)
This commit is contained in:
24
moreores.lua
24
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
|
||||
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
|
||||
|
Reference in New Issue
Block a user