Restore recipe for bronze block to ingots

This commit is contained in:
auouymous 2020-09-04 01:28:45 -06:00
parent 00618d13b5
commit bdd8de8a6a
1 changed files with 7 additions and 0 deletions

View File

@ -7,6 +7,13 @@ minetest.clear_craft({
type = "shapeless",
output = "default:bronze_ingot"
})
-- Restore recipe for bronze block to ingots
minetest.register_craft({
output = "default:bronze_ingot 9",
recipe = {
{"default:bronzeblock"}
}
})
-- Accelerator tube
if pipeworks.enable_accelerator_tube then