summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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'},
}