1
0
mirror of https://github.com/Sokomine/colormachine.git synced 2024-11-12 21:50:17 +01:00

added receipe

This commit is contained in:
Sokomine 2013-07-22 22:12:18 +02:00
parent a407345d08
commit 5053be2908

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' }
}
})