From 1c219487d3f4dd03c01ff9aa1f298c7c18c7e189 Mon Sep 17 00:00:00 2001
From: sfence <sfence.software@gmail.com>
Date: Wed, 14 Apr 2021 16:20:20 +0200
Subject: [PATCH] Add support for craftguide mod recipe registration (#584)

---
 technic_chests/iron_chest.lua |    5 +++--
 1 files changed, 3 insertions(+), 2 deletions(-)

diff --git a/technic_chests/iron_chest.lua b/technic_chests/iron_chest.lua
index 90434bb..a1945bc 100644
--- a/technic_chests/iron_chest.lua
+++ b/technic_chests/iron_chest.lua
@@ -25,9 +25,10 @@
 
 minetest.register_craft({
 	output = 'technic:iron_locked_chest 1',
+	type = "shapeless",
 	recipe = {
-		{'default:steel_ingot'},
-		{'technic:iron_chest'},
+		'basic_materials:padlock',
+		'technic:iron_chest',
 	}
 })
 

--
Gitblit v1.8.0