From 63ab5ef5d4363754cb750e03be58e649f2c81f01 Mon Sep 17 00:00:00 2001 From: Zefram Date: Sun, 6 Jul 2014 18:50:18 +0100 Subject: [PATCH] Tweak supply converter recipe The casing is now in the center of the grid, as it is for all other machines. --- technic/machines/supply_converter.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/technic/machines/supply_converter.lua b/technic/machines/supply_converter.lua index 3247e34..fd59401 100644 --- a/technic/machines/supply_converter.lua +++ b/technic/machines/supply_converter.lua @@ -32,8 +32,8 @@ minetest.register_node("technic:supply_converter", { minetest.register_craft({ output = 'technic:supply_converter 1', recipe = { - {'technic:stainless_steel_ingot', 'technic:machine_casing', 'technic:stainless_steel_ingot'}, - {'technic:mv_transformer', 'technic:mv_cable0', 'technic:lv_transformer'}, + {'technic:stainless_steel_ingot', 'technic:rubber', 'technic:stainless_steel_ingot'}, + {'technic:mv_transformer', 'technic:machine_casing', 'technic:lv_transformer'}, {'technic:mv_cable0', 'technic:rubber', 'technic:lv_cable0'}, } })