Add crafting recipes for digiline and lcd.

This commit is contained in:
lordcirth
2013-05-10 16:56:47 -04:00
parent ead577365d
commit 50cfbdc501
2 changed files with 18 additions and 0 deletions

View File

@ -232,3 +232,12 @@ generate_line = function(s, ypos)
end
return texture
end
minetest.register_craft({
output = "digilines_lcd:lcd 2",
recipe = {
{"default:steel_ingot", "digilines:wire_std_00000000", "default:steel_ingot"},
{"mesecons_lightstone:lightstone_green_off","mesecons_lightstone:lightstone_green_off","mesecons_lightstone:lightstone_green_off"},
{"default:glass","default:glass","default:glass"}
}
})