From: Zefram Date: Sun, 6 Jul 2014 17:50:18 +0000 (+0100) Subject: Tweak supply converter recipe X-Git-Url: http://81.2.79.47:8989/gitweb/?a=commitdiff_plain;h=4958a77e21c405ebf27c5713fc8585140183a2c4;p=zefram%2Fminetest%2Ftechnic.git Tweak supply converter recipe The casing is now in the center of the grid, as it is for all other machines. --- 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'}, } })