From d111d8673ac142ffdd1638540a75c18797930428 Mon Sep 17 00:00:00 2001 From: tidle Date: Sat, 13 Oct 2018 20:03:45 -0700 Subject: [PATCH] Add ammo crafting recipe --- mods/ctf_crafting/init.lua | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/mods/ctf_crafting/init.lua b/mods/ctf_crafting/init.lua index 498b84f..ab8b269 100644 --- a/mods/ctf_crafting/init.lua +++ b/mods/ctf_crafting/init.lua @@ -155,3 +155,11 @@ crafting.register_recipe({ always_known = true, level = 1, }) + +crafting.register_recipe({ + type = "inv", + output = "shooter:ammo 1", + items = { "default:steel_ingot 5", "default:coal_lump 2" }, + always_known = true, + level = 1, +})