mirror of
https://github.com/minetest-mods/technic.git
synced 2025-07-04 09:10:38 +02:00
Consistently use cable in electric machine recipes
All electric machine recipes now include cable of the appropriate tier as the bottom-middle ingredient, immediately below the casing ingredient. Many LV machines were using a copper ingot in that location.
This commit is contained in:
@ -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'},
|
||||
}
|
||||
})
|
||||
|
||||
|
@ -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'},
|
||||
}
|
||||
})
|
||||
|
||||
|
@ -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', ''},
|
||||
}
|
||||
})
|
||||
|
||||
|
Reference in New Issue
Block a user