summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--technic/machines/HV/forcefield.lua2
-rw-r--r--technic/machines/HV/generator.lua4
-rw-r--r--technic/machines/HV/nuclear_reactor.lua2
-rw-r--r--technic/machines/HV/quarry.lua6
-rw-r--r--technic/machines/LV/alloy_furnace.lua2
-rw-r--r--technic/machines/LV/battery_box.lua4
-rw-r--r--technic/machines/LV/cnc.lua2
-rw-r--r--technic/machines/LV/electric_furnace.lua2
-rw-r--r--technic/machines/LV/generator.lua2
-rw-r--r--technic/machines/LV/geothermal.lua2
-rw-r--r--technic/machines/LV/grinder.lua2
-rw-r--r--technic/machines/LV/music_player.lua2
-rw-r--r--technic/machines/LV/water_mill.lua2
-rw-r--r--technic/machines/MV/generator.lua4
-rw-r--r--technic/machines/MV/tool_workshop.lua2
-rw-r--r--technic/machines/MV/wind_mill.lua6
16 files changed, 23 insertions, 23 deletions
diff --git a/technic/machines/HV/forcefield.lua b/technic/machines/HV/forcefield.lua
index 7e05292..c66ac7d 100644
--- a/technic/machines/HV/forcefield.lua
+++ b/technic/machines/HV/forcefield.lua
@@ -16,7 +16,7 @@ minetest.register_craft({
recipe = {
{'default:mese', 'technic:motor', 'default:mese' },
{'technic:deployer_off', 'technic:machine_casing', 'technic:deployer_off'},
- {'default:mese', 'technic:deployer_off', 'default:mese' },
+ {'default:mese', 'technic:hv_cable0', 'default:mese' },
}
})
diff --git a/technic/machines/HV/generator.lua b/technic/machines/HV/generator.lua
index 8aa734e..86f8577 100644
--- a/technic/machines/HV/generator.lua
+++ b/technic/machines/HV/generator.lua
@@ -4,8 +4,8 @@ minetest.register_craft({
output = 'technic:hv_generator',
recipe = {
{'technic:stainless_steel_ingot', 'technic:mv_generator', 'technic:stainless_steel_ingot'},
- {'pipeworks:tube_1', 'technic:hv_transformer', 'pipeworks:tube_1'},
- {'technic:stainless_steel_ingot', 'technic:hv_cable', 'technic:stainless_steel_ingot'},
+ {'pipeworks:tube_1', 'technic:hv_transformer', 'pipeworks:tube_1'},
+ {'technic:stainless_steel_ingot', 'technic:hv_cable0', 'technic:stainless_steel_ingot'},
}
})
diff --git a/technic/machines/HV/nuclear_reactor.lua b/technic/machines/HV/nuclear_reactor.lua
index 3936fd1..8cdeb97 100644
--- a/technic/machines/HV/nuclear_reactor.lua
+++ b/technic/machines/HV/nuclear_reactor.lua
@@ -18,7 +18,7 @@ minetest.register_craft({
recipe = {
{'technic:stainless_steel_ingot', 'technic:stainless_steel_ingot', 'technic:stainless_steel_ingot'},
{'technic:stainless_steel_ingot', 'technic:machine_casing', 'technic:stainless_steel_ingot'},
- {'technic:stainless_steel_ingot', 'technic:hv_cable', 'technic:stainless_steel_ingot'},
+ {'technic:stainless_steel_ingot', 'technic:hv_cable0', 'technic:stainless_steel_ingot'},
}
})
diff --git a/technic/machines/HV/quarry.lua b/technic/machines/HV/quarry.lua
index 09421de..c10a558 100644
--- a/technic/machines/HV/quarry.lua
+++ b/technic/machines/HV/quarry.lua
@@ -3,9 +3,9 @@ local S = technic.getter
minetest.register_craft({
recipe = {
- {"technic:carbon_steel_block", "pipeworks:filter", "technic:carbon_steel_block"},
- {"technic:motor", "technic:machine_casing", "technic:carbon_steel_block"},
- {"technic:carbon_steel_block", "technic:diamond_drill_head", "technic:carbon_steel_block"}},
+ {"technic:carbon_steel_block", "pipeworks:filter", "technic:carbon_steel_block"},
+ {"technic:motor", "technic:machine_casing", "technic:diamond_drill_head"},
+ {"technic:carbon_steel_block", "technic:hv_cable0", "technic:carbon_steel_block"}},
output = "technic:quarry",
})
diff --git a/technic/machines/LV/alloy_furnace.lua b/technic/machines/LV/alloy_furnace.lua
index e267f44..bdf2f31 100644
--- a/technic/machines/LV/alloy_furnace.lua
+++ b/technic/machines/LV/alloy_furnace.lua
@@ -6,7 +6,7 @@ minetest.register_craft({
recipe = {
{'default:brick', 'default:brick', 'default:brick'},
{'default:brick', 'technic:machine_casing', 'default:brick'},
- {'default:brick', 'default:copper_ingot', 'default:brick'},
+ {'default:brick', 'technic:lv_cable0', 'default:brick'},
}
})
diff --git a/technic/machines/LV/battery_box.lua b/technic/machines/LV/battery_box.lua
index 63c285b..429bcd6 100644
--- a/technic/machines/LV/battery_box.lua
+++ b/technic/machines/LV/battery_box.lua
@@ -2,9 +2,9 @@
minetest.register_craft({
output = 'technic:lv_battery_box0',
recipe = {
- {'technic:battery', 'default:copper_ingot', 'technic:battery'},
- {'technic:battery', 'technic:machine_casing', 'technic:battery'},
{'group:wood', 'group:wood', 'group:wood'},
+ {'technic:battery', 'technic:machine_casing', 'technic:battery'},
+ {'technic:battery', 'technic:lv_cable0', 'technic:battery'},
}
})
diff --git a/technic/machines/LV/cnc.lua b/technic/machines/LV/cnc.lua
index 1af0884..5cf458f 100644
--- a/technic/machines/LV/cnc.lua
+++ b/technic/machines/LV/cnc.lua
@@ -230,7 +230,7 @@ minetest.register_craft({
recipe = {
{'default:glass', 'technic:diamond_drill_head', 'default:glass'},
{'technic:control_logic_unit', 'technic:machine_casing', 'technic:motor'},
- {'technic:carbon_steel_ingot', 'default:copper_ingot', 'technic:carbon_steel_ingot'},
+ {'technic:carbon_steel_ingot', 'technic:lv_cable0', 'technic:carbon_steel_ingot'},
},
})
diff --git a/technic/machines/LV/electric_furnace.lua b/technic/machines/LV/electric_furnace.lua
index 58570d9..cc4daff 100644
--- a/technic/machines/LV/electric_furnace.lua
+++ b/technic/machines/LV/electric_furnace.lua
@@ -7,7 +7,7 @@ minetest.register_craft({
recipe = {
{'default:cobble', 'default:cobble', 'default:cobble'},
{'default:cobble', 'technic:machine_casing', 'default:cobble'},
- {'default:cobble', 'moreores:copper_ingot', 'default:cobble'},
+ {'default:cobble', 'technic:lv_cable0', 'default:cobble'},
}
})
diff --git a/technic/machines/LV/generator.lua b/technic/machines/LV/generator.lua
index 356beb3..0be8506 100644
--- a/technic/machines/LV/generator.lua
+++ b/technic/machines/LV/generator.lua
@@ -10,7 +10,7 @@ minetest.register_craft({
recipe = {
{'default:stone', 'default:stone', 'default:stone'},
{'default:stone', 'technic:machine_casing', 'default:stone'},
- {'default:stone', 'default:copper_ingot', 'default:stone'},
+ {'default:stone', 'technic:lv_cable0', 'default:stone'},
}
})
diff --git a/technic/machines/LV/geothermal.lua b/technic/machines/LV/geothermal.lua
index 8b9b42c..489d764 100644
--- a/technic/machines/LV/geothermal.lua
+++ b/technic/machines/LV/geothermal.lua
@@ -12,7 +12,7 @@ minetest.register_craft({
recipe = {
{'default:stone', 'default:diamond', 'default:stone'},
{'default:copper_ingot', 'technic:machine_casing', 'default:copper_ingot'},
- {'default:stone', 'default:copper_ingot', 'default:stone'},
+ {'default:stone', 'technic:lv_cable0', 'default:stone'},
}
})
diff --git a/technic/machines/LV/grinder.lua b/technic/machines/LV/grinder.lua
index 6a98922..ae4a659 100644
--- a/technic/machines/LV/grinder.lua
+++ b/technic/machines/LV/grinder.lua
@@ -5,7 +5,7 @@ minetest.register_craft({
recipe = {
{'default:desert_stone', 'default:diamond', 'default:desert_stone'},
{'default:desert_stone', 'technic:machine_casing', 'default:desert_stone'},
- {'default:stone', 'moreores:copper_ingot', 'default:stone'},
+ {'default:stone', 'technic:lv_cable0', 'default:stone'},
}
})
diff --git a/technic/machines/LV/music_player.lua b/technic/machines/LV/music_player.lua
index c5bfee9..9ab88f2 100644
--- a/technic/machines/LV/music_player.lua
+++ b/technic/machines/LV/music_player.lua
@@ -9,7 +9,7 @@ minetest.register_craft({
recipe = {
{'group:wood', 'default:diamond', 'group:wood'},
{'default:diamond', 'technic:machine_casing', 'default:diamond'},
- {'default:stone', 'default:copper_ingot', 'default:stone'},
+ {'default:stone', 'technic:lv_cable0', 'default:stone'},
}
})
diff --git a/technic/machines/LV/water_mill.lua b/technic/machines/LV/water_mill.lua
index eb5a430..771a588 100644
--- a/technic/machines/LV/water_mill.lua
+++ b/technic/machines/LV/water_mill.lua
@@ -11,7 +11,7 @@ minetest.register_craft({
recipe = {
{'default:stone', 'default:diamond', 'default:stone'},
{'group:wood', 'technic:machine_casing', 'group:wood'},
- {'default:stone', 'default:copper_ingot', 'default:stone'},
+ {'default:stone', 'technic:lv_cable0', 'default:stone'},
}
})
diff --git a/technic/machines/MV/generator.lua b/technic/machines/MV/generator.lua
index 21c7e84..4ae24b8 100644
--- a/technic/machines/MV/generator.lua
+++ b/technic/machines/MV/generator.lua
@@ -4,8 +4,8 @@ minetest.register_craft({
output = 'technic:mv_generator',
recipe = {
{'technic:stainless_steel_ingot', 'technic:lv_generator', 'technic:stainless_steel_ingot'},
- {'pipeworks:tube_1', 'technic:mv_transformer', 'pipeworks:tube_1'},
- {'technic:stainless_steel_ingot', 'technic:mv_cable', 'technic:stainless_steel_ingot'},
+ {'pipeworks:tube_1', 'technic:mv_transformer', 'pipeworks:tube_1'},
+ {'technic:stainless_steel_ingot', 'technic:mv_cable0', 'technic:stainless_steel_ingot'},
}
})
diff --git a/technic/machines/MV/tool_workshop.lua b/technic/machines/MV/tool_workshop.lua
index 36ce0d2..1255931 100644
--- a/technic/machines/MV/tool_workshop.lua
+++ b/technic/machines/MV/tool_workshop.lua
@@ -10,7 +10,7 @@ minetest.register_craft({
recipe = {
{'group:wood', 'default:diamond', 'group:wood'},
{'group:wood', 'technic:machine_casing', 'group:wood'},
- {'default:stone', 'default:copper_ingot', 'default:stone'},
+ {'default:stone', 'technic:mv_cable0', 'default:stone'},
}
})
diff --git a/technic/machines/MV/wind_mill.lua b/technic/machines/MV/wind_mill.lua
index 868a60e..1bc8e02 100644
--- a/technic/machines/MV/wind_mill.lua
+++ b/technic/machines/MV/wind_mill.lua
@@ -13,9 +13,9 @@ minetest.register_craft({
minetest.register_craft({
output = 'technic:wind_mill',
recipe = {
- {'', 'technic:carbon_steel_ingot', ''},
- {'technic:carbon_steel_ingot', 'technic:motor', 'technic:carbon_steel_ingot'},
- {'', 'technic:carbon_steel_block', ''},
+ {'', 'technic:motor', ''},
+ {'technic:carbon_steel_ingot', 'technic:carbon_steel_block', 'technic:carbon_steel_ingot'},
+ {'', 'technic:mv_cable0', ''},
}
})