From e1a67950c5c9f40b7aeedc603f2e6040a85428b9 Mon Sep 17 00:00:00 2001 From: Freeman Date: Fri, 3 Nov 2023 22:59:31 +0100 Subject: [PATCH] technic:motor to basic_materials:motor technic:motor does not exist, technic requires basic_materials, which adds the alias technic:motor to basic_materials:motor basic_materials:motor is used in other crafts --- technic/machines/MV/freezer.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/technic/machines/MV/freezer.lua b/technic/machines/MV/freezer.lua index 039dbe62..0ae2f7bf 100644 --- a/technic/machines/MV/freezer.lua +++ b/technic/machines/MV/freezer.lua @@ -4,7 +4,7 @@ local S = technic.getter minetest.register_craft({ output = 'technic:mv_freezer', recipe = { - {'technic:stainless_steel_ingot', 'technic:motor', 'technic:stainless_steel_ingot'}, + {'technic:stainless_steel_ingot', 'basic_materials:motor', 'technic:stainless_steel_ingot'}, {'pipeworks:pipe_1_empty', 'technic:mv_transformer', 'pipeworks:pipe_1_empty'}, {'technic:stainless_steel_ingot', 'technic:mv_cable', 'technic:stainless_steel_ingot'}, }