Added a recipe for cooking desert cobble to get desert stone (fixing https://github.com/minetest-technic/technic_game_2/issues/1 )

master
hdastwb 2014-08-21 12:59:57 -04:00
parent 93d58fc714
commit 36bd4b8b37
1 changed files with 6 additions and 0 deletions

View File

@ -102,3 +102,9 @@ minetest.register_node(":default:desert_cobble", {
groups = {cracky=3, stone=2},
sounds = default.node_sound_stone_defaults(),
})
minetest.register_craft({
type = "cooking",
output = "default:desert_stone",
recipe = "default:desert_cobble",
})