diff --git a/technic_chests/copper_chest.lua b/technic_chests/copper_chest.lua index 11c6544c..dea384e1 100644 --- a/technic_chests/copper_chest.lua +++ b/technic_chests/copper_chest.lua @@ -19,7 +19,10 @@ minetest.register_craft({ minetest.register_craft({ output = 'technic:copper_locked_chest 1', type = "shapeless", - recipe = {'basic_materials:padlock', 'technic:copper_chest'} + recipe = { + 'basic_materials:padlock', + 'technic:copper_chest', + } }) technic.chests:register("Copper", { diff --git a/technic_chests/gold_chest.lua b/technic_chests/gold_chest.lua index 4961b15c..e308c8b1 100644 --- a/technic_chests/gold_chest.lua +++ b/technic_chests/gold_chest.lua @@ -30,7 +30,10 @@ end minetest.register_craft({ output = 'technic:gold_locked_chest', type = "shapeless", - recipe = {'basic_materials:padlock', 'technic:gold_chest'} + recipe = { + 'basic_materials:padlock', + 'technic:gold_chest', + } }) technic.chests:register("Gold", { diff --git a/technic_chests/iron_chest.lua b/technic_chests/iron_chest.lua index 26e733ac..22874480 100644 --- a/technic_chests/iron_chest.lua +++ b/technic_chests/iron_chest.lua @@ -26,7 +26,10 @@ minetest.register_craft({ minetest.register_craft({ output = 'technic:iron_locked_chest 1', type = "shapeless", - recipe = {'basic_materials:padlock', 'technic:iron_chest'} + recipe = { + 'basic_materials:padlock', + 'technic:iron_chest', + } }) technic.chests:register("Iron", { diff --git a/technic_chests/mithril_chest.lua b/technic_chests/mithril_chest.lua index ae65ba28..71b11a6f 100644 --- a/technic_chests/mithril_chest.lua +++ b/technic_chests/mithril_chest.lua @@ -21,7 +21,10 @@ end minetest.register_craft({ output = 'technic:mithril_locked_chest 1', type = "shapeless", - recipe = {'basic_materials:padlock', 'technic:mithril_chest'} + recipe = { + 'basic_materials:padlock', + 'technic:mithril_chest', + } }) -- plain chest diff --git a/technic_chests/silver_chest.lua b/technic_chests/silver_chest.lua index 805e5045..3cf83c56 100644 --- a/technic_chests/silver_chest.lua +++ b/technic_chests/silver_chest.lua @@ -21,7 +21,10 @@ end minetest.register_craft({ output = 'technic:silver_locked_chest', type = "shapeless", - recipe = {'basic_materials:padlock', 'technic:silver_chest'} + recipe = { + 'basic_materials:padlock', + 'technic:silver_chest', + } }) technic.chests:register("Silver", {