added receipe

This commit is contained in:
Sokomine 2013-07-22 22:12:18 +02:00
parent a407345d08
commit 5053be2908
1 changed files with 9 additions and 0 deletions

View File

@ -1559,3 +1559,12 @@ minetest.register_node("colormachine:colormachine", {
return true
end
})
minetest.register_craft({
output = 'colormachine:colormachine',
recipe = {
{ 'default:gold_ingot', 'default:glass', 'default:gold_ingot', },
{ 'default:mese', 'default:glass', 'default:mese' },
{ 'default:steel_ingot', 'default:steel_ingot', 'default:steel_ingot' }
}
})