Update nuclear_reactor_hv.lua

Fix temporary recipe.
This commit is contained in:
kpoppel 2013-07-11 14:33:03 +02:00
parent 3055270a7c
commit afc84d6a8d
1 changed files with 3 additions and 3 deletions

View File

@ -13,9 +13,9 @@ local fuel_type = "technic:enriched_uranium" -- This reactor burns this stuff
minetest.register_craft({
output = 'technic:hv_nuclear_reactor_core',
recipe = {
{'default:stainless_steel_ingot', 'default:stainless_steel_ingot', 'default:stainless_steel_ingot'},
{'default:stainless_steel_ingot', '', 'default:stainless_steel_ingot'},
{'default:stainless_steel_ingot', 'technic:hv_cable', 'default:stainless_steel_ingot'},
{'technic:stainless_steel_ingot', 'technic:stainless_steel_ingot', 'technic:stainless_steel_ingot'},
{'technic:stainless_steel_ingot', '', 'technic:stainless_steel_ingot'},
{'technic:stainless_steel_ingot', 'technic:hv_cable', 'technic:stainless_steel_ingot'},
}
})