added crafting for torch

This commit is contained in:
cale 2016-01-18 19:38:20 +01:00
parent dc2ade6016
commit 7d65cb898a
2 changed files with 18 additions and 0 deletions

View File

@ -54,3 +54,12 @@ minetest.register_abm({
})
end,
})
minetest.register_craft({
output = "torch:torch",
recipe = {
{"", "default:coal_lump", ""},
{"", "default:string_strong", ""},
{"", "default:log_3", ""},
}
})

View File

@ -54,3 +54,12 @@ minetest.register_abm({
})
end,
})
minetest.register_craft({
output = "torch:torch",
recipe = {
{"", "default:coal_lump", ""},
{"", "default:string_strong", ""},
{"", "default:log_3", ""},
}
})