summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZefram <zefram@fysh.org>2014-07-06 18:50:18 +0100
committerNovatux <nathanael.courant@laposte.net>2014-07-09 09:17:44 +0200
commit4958a77e21c405ebf27c5713fc8585140183a2c4 (patch)
tree7aaf9d3c8920b4d74db166d6d3ddf607c7038b07
parent68ea0acbd0cb6dc61b849efab4d6207bdf515853 (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'},
}
})