Move crafting, cooking and fuel recipes into corresponding files
This commit is contained in:
parent
1082466796
commit
6e32287a42
6 changed files with 416 additions and 406 deletions
|
@ -134,3 +134,17 @@ minetest.register_lbm({
|
|||
end
|
||||
end
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = "default:torch 4",
|
||||
recipe = {
|
||||
{"default:coal_lump"},
|
||||
{"group:stick"},
|
||||
}
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
type = "fuel",
|
||||
recipe = "default:torch",
|
||||
burntime = 4,
|
||||
})
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue