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/gold_chest.lua |    5 +++--
 1 files changed, 3 insertions(+), 2 deletions(-)

diff --git a/technic_chests/gold_chest.lua b/technic_chests/gold_chest.lua
index 7a50b70..24cbb5c 100644
--- a/technic_chests/gold_chest.lua
+++ b/technic_chests/gold_chest.lua
@@ -29,9 +29,10 @@
 
 minetest.register_craft({
 	output = 'technic:gold_locked_chest',
+	type = "shapeless",
 	recipe = {
-		{'basic_materials:padlock'},
-		{'technic:gold_chest'},
+		'basic_materials:padlock',
+		'technic:gold_chest',
 	}
 })
 

--
Gitblit v1.8.0