summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorkpoppel <poulsen.kim@gmail.com>2013-06-04 00:05:07 +0200
committerkpoppel <poulsen.kim@gmail.com>2013-06-04 00:05:07 +0200
commitbe774436c14c781d6c5482d8b4436f7687ba4d2f (patch)
treebf34bc4599f14be816511205dfcc7aa6e2744af9
parent4f1a44a80b5522db60125f3018c0ce80fbb9e3b4 (diff)
Fix solr array recipes for hv and mv to match that of the lv array.
-rw-r--r--technic/solar_array_hv.lua2
-rw-r--r--technic/solar_array_mv.lua2
2 files changed, 2 insertions, 2 deletions
diff --git a/technic/solar_array_hv.lua b/technic/solar_array_hv.lua
index 89f5d1b..e159248 100644
--- a/technic/solar_array_hv.lua
+++ b/technic/solar_array_hv.lua
@@ -40,7 +40,7 @@ minetest.register_craft({
recipe = {
{'technic:solar_array_mv', 'technic:solar_array_mv','technic:solar_array_mv'},
{'technic:solar_array_mv', 'technic:hv_transformer','technic:solar_array_mv'},
- {'', 'technic:hv_cable',''},
+ {'default:steel_ingot', 'technic:hv_cable', 'default:steel_ingot'},
}
})
diff --git a/technic/solar_array_mv.lua b/technic/solar_array_mv.lua
index 73fe85a..de75301 100644
--- a/technic/solar_array_mv.lua
+++ b/technic/solar_array_mv.lua
@@ -41,7 +41,7 @@ minetest.register_craft({
recipe = {
{'technic:solar_array_lv', 'technic:solar_array_lv','technic:solar_array_lv'},
{'technic:solar_array_lv', 'technic:mv_transformer','technic:solar_array_lv'},
- {'', 'technic:mv_cable',''},
+ {'default:steel_ingot', 'technic:mv_cable', 'default:steel_ingot'},
}
})