From 88f42539bb378ec25410967634c1e3ae274473a3 Mon Sep 17 00:00:00 2001 From: dokutan <54861821+dokutan@users.noreply.github.com> Date: Sun, 3 May 2020 19:53:43 +0200 Subject: [PATCH] Fix error caused by locked chest recipes (#548) --- technic_chests/copper_chest.lua | 4 ++-- technic_chests/gold_chest.lua | 4 ++-- technic_chests/iron_chest.lua | 4 ++-- technic_chests/mithril_chest.lua | 4 ++-- technic_chests/silver_chest.lua | 4 ++-- 5 files changed, 10 insertions(+), 10 deletions(-) diff --git a/technic_chests/copper_chest.lua b/technic_chests/copper_chest.lua index 6445d46..c989bac 100644 --- a/technic_chests/copper_chest.lua +++ b/technic_chests/copper_chest.lua @@ -20,8 +20,8 @@ minetest.register_craft({ output = 'technic:copper_locked_chest 1', type = "shapeless", recipe = { - {'basic_materials:padlock'}, - {'technic:copper_chest'}, + 'basic_materials:padlock', + 'technic:copper_chest', } }) diff --git a/technic_chests/gold_chest.lua b/technic_chests/gold_chest.lua index 9497646..24cbb5c 100644 --- a/technic_chests/gold_chest.lua +++ b/technic_chests/gold_chest.lua @@ -31,8 +31,8 @@ minetest.register_craft({ output = 'technic:gold_locked_chest', type = "shapeless", recipe = { - {'basic_materials:padlock'}, - {'technic:gold_chest'}, + 'basic_materials:padlock', + 'technic:gold_chest', } }) diff --git a/technic_chests/iron_chest.lua b/technic_chests/iron_chest.lua index d522240..a1945bc 100644 --- a/technic_chests/iron_chest.lua +++ b/technic_chests/iron_chest.lua @@ -27,8 +27,8 @@ minetest.register_craft({ output = 'technic:iron_locked_chest 1', type = "shapeless", recipe = { - {'basic_materials:padlock'}, - {'technic:iron_chest'}, + 'basic_materials:padlock', + 'technic:iron_chest', } }) diff --git a/technic_chests/mithril_chest.lua b/technic_chests/mithril_chest.lua index 38ed293..40ea95c 100644 --- a/technic_chests/mithril_chest.lua +++ b/technic_chests/mithril_chest.lua @@ -22,8 +22,8 @@ minetest.register_craft({ output = 'technic:mithril_locked_chest 1', type = "shapeless", recipe = { - {'basic_materials:padlock'}, - {'technic:mithril_chest'}, + 'basic_materials:padlock', + 'technic:mithril_chest', } }) diff --git a/technic_chests/silver_chest.lua b/technic_chests/silver_chest.lua index 8bc8423..6e2ce56 100644 --- a/technic_chests/silver_chest.lua +++ b/technic_chests/silver_chest.lua @@ -22,8 +22,8 @@ minetest.register_craft({ output = 'technic:silver_locked_chest', type = "shapeless", recipe = { - {'basic_materials:padlock'}, - {'technic:silver_chest'}, + 'basic_materials:padlock', + 'technic:silver_chest', } })