From 1b962df5ad5d1abbb99a858128a9f7629d914a74 Mon Sep 17 00:00:00 2001 From: Wuzzy Date: Tue, 31 Mar 2020 17:45:35 +0200 Subject: [PATCH] Fix coin recipe --- mods/anvil/init.lua | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) diff --git a/mods/anvil/init.lua b/mods/anvil/init.lua index 6a78a3d..4ce4908 100644 --- a/mods/anvil/init.lua +++ b/mods/anvil/init.lua @@ -94,15 +94,14 @@ for i, metal in ipairs(metals.list) do level = metals.levels[i], material = metal, }) - -- receipe for coin production - realtest.register_anvil_recipe({ - item1 = "metals:gold_sheet", - output = "money:coin 15", - level = metals.levels[i], - instrument = "chisel", - material = "gold", - }) end +-- receipe for coin production +realtest.register_anvil_recipe({ + item1 = "metals:gold_sheet", + output = "money:coin 15", + instrument = "chisel", + material = "gold", +}) -- general receipes (for flux production; used for welding) realtest.register_anvil_recipe({ item1 = "minerals:borax",