summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorh-v-smacker <hans-von-smacker+github@gmail.com>2018-03-07 15:40:36 +0300
committerh-v-smacker <hans-von-smacker+github@gmail.com>2018-03-07 15:40:36 +0300
commit7e220e3e5a72064ed6f898d2fea618e32c9f8d58 (patch)
treef7967931c483079f68b4c6b5d45ff1e0d8cc88dd
parente2f384767bbc28dfc1befe028341b4da729753b2 (diff)
recipe fix
-rw-r--r--technic/machines/HV/compressor.lua4
-rw-r--r--technic/machines/HV/grinder.lua2
2 files changed, 3 insertions, 3 deletions
diff --git a/technic/machines/HV/compressor.lua b/technic/machines/HV/compressor.lua
index a5998b6..12e165b 100644
--- a/technic/machines/HV/compressor.lua
+++ b/technic/machines/HV/compressor.lua
@@ -1,9 +1,9 @@
-- HV compressor
minetest.register_craft({
- output = 'technic:mv_compressor',
+ output = 'technic:hv_compressor',
recipe = {
- {'technic:stainless_steel_ingot', 'technic:mv_compressor', 'technic:stainless_steel_ingot'},
+ {'technic:carbon_plate', 'technic:mv_compressor', 'technic:composite_plate'},
{'pipeworks:tube_1', 'technic:hv_transformer', 'pipeworks:tube_1'},
{'technic:stainless_steel_ingot', 'technic:hv_cable', 'technic:stainless_steel_ingot'},
}
diff --git a/technic/machines/HV/grinder.lua b/technic/machines/HV/grinder.lua
index d932a90..89dfc31 100644
--- a/technic/machines/HV/grinder.lua
+++ b/technic/machines/HV/grinder.lua
@@ -3,7 +3,7 @@
minetest.register_craft({
output = 'technic:hv_grinder',
recipe = {
- {'technic:stainless_steel_ingot', 'technic:mv_grinder', 'technic:stainless_steel_ingot'},
+ {'technic:carbon_plate', 'technic:mv_grinder', 'technic:composite_plate'},
{'pipeworks:tube_1', 'technic:hv_transformer', 'pipeworks:tube_1'},
{'technic:stainless_steel_ingot', 'technic:hv_cable', 'technic:stainless_steel_ingot'},
}