Modify ammo recipe and add a new recipe that uses tin

This commit is contained in:
Lone_Wolf 2018-11-20 05:21:25 -08:00 committed by rubenwardy
parent edecba43c2
commit 04e6a43cd2

View file

@ -159,7 +159,15 @@ crafting.register_recipe({
crafting.register_recipe({
type = "inv",
output = "shooter:ammo 1",
items = { "default:steel_ingot 5", "default:coal_lump 2" },
items = { "default:tin_ingot 3", "default:coal_lump 2" },
always_known = true,
level = 1,
})
crafting.register_recipe({
type = "inv",
output = "shooter:ammo 1",
items = { "default:steel_ingot 3", "default:coal_lump 2" },
always_known = true,
level = 1,
})