From f8a43e567d7f29290cc3a9c6130c94fd9fcc8117 Mon Sep 17 00:00:00 2001 From: mrkubax10 Date: Sat, 11 Mar 2023 19:52:16 +0100 Subject: [PATCH] Use copper cable in RE-Battery craft --- craftitems.lua | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/craftitems.lua b/craftitems.lua index 266eb3f..1f6f806 100644 --- a/craftitems.lua +++ b/craftitems.lua @@ -28,8 +28,7 @@ minetest.register_craft({ type="shaped", output="industrialtest:re_battery", recipe={ - -- TODO: Change default:tin_ingot to copper cable when it will be added - {"",industrialtest.elementKeys.tinIngot,""}, + {"","industrialtest:copper_cable",""}, {industrialtest.elementKeys.tinIngot,industrialtest.elementKeys.powerCarrier,industrialtest.elementKeys.tinIngot}, {industrialtest.elementKeys.tinIngot,industrialtest.elementKeys.powerCarrier,industrialtest.elementKeys.tinIngot} }