Merge pull request #3 from lordcirth/master

Added crafting recipes for digiline and lcd.
This commit is contained in:
Florian Euchner
2014-11-19 18:59:52 +01:00
2 changed files with 18 additions and 0 deletions

View File

@ -214,3 +214,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"}
}
})