Add crafting recipes for steel and bronze block (#593)

This commit is contained in:
MinetestSam 2020-04-26 14:49:07 +05:30 committed by GitHub
parent eb69beeb1d
commit e18fa14af0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -69,6 +69,24 @@ crafting.register_recipe({
level = 1,
})
--Bronze block <== Bronze Ingot x9
crafting.register_recipe({
type = "inv",
output = "default:bronzeblock",
items = { "default:bronze_ingot 9" },
always_known = true,
level = 1,
})
--Steel block <== Steel Ingot x9
crafting.register_recipe({
type = "inv",
output = "default:steelblock",
items = { "default:steel_ingot 9" },
always_known = true,
level = 1,
})
-- Furnace <== group:stone x8
crafting.register_recipe({
type = "inv",