From 04e6a43cd29e68531cbb0fa4bfaa90ea1236552c Mon Sep 17 00:00:00 2001 From: Lone_Wolf Date: Tue, 20 Nov 2018 05:21:25 -0800 Subject: [PATCH] Modify ammo recipe and add a new recipe that uses tin --- mods/ctf_crafting/init.lua | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/mods/ctf_crafting/init.lua b/mods/ctf_crafting/init.lua index 6641ad4..f734660 100644 --- a/mods/ctf_crafting/init.lua +++ b/mods/ctf_crafting/init.lua @@ -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, })