Solar panel new recipe

This commit is contained in:
Maciej Kasatkin 2012-09-11 19:49:41 +02:00
parent a486212722
commit 4c99769df0
1 changed files with 3 additions and 3 deletions

View File

@ -33,9 +33,9 @@ minetest.register_node("technic:solar_panel", {
minetest.register_craft({
output = 'technic:solar_panel 1',
recipe = {
{'default:sand', 'default:sand','default:sand'},
{'default:sand', 'moreores:copper_ingot','default:sand'},
{'default:sand', 'default:sand','default:sand'},
{'technic:doped_silicon_wafer', 'technic:doped_silicon_wafer','technic:doped_silicon_wafer'},
{'technic:doped_silicon_wafer', 'moreores:copper_ingot','technic:doped_silicon_wafer'},
{'technic:doped_silicon_wafer', 'technic:doped_silicon_wafer','technic:doped_silicon_wafer'},
}
})