summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZefram <zefram@fysh.org>2014-07-06 18:50:18 +0100
committerNovatux <nathanael.courant@laposte.net>2014-07-07 15:15:30 +0200
commit63ab5ef5d4363754cb750e03be58e649f2c81f01 (patch)
tree088d101617eb981c6b9deb119a30bdfad95f69b7
parent74d54eb0b47f530aacfc4a5688349ac37c73d495 (diff)
Tweak supply converter recipe
The casing is now in the center of the grid, as it is for all other machines.
-rw-r--r--technic/machines/supply_converter.lua4
1 files 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'},
}
})