forked from Mineclonia/Mineclonia
Fix torches not being craftable
This commit is contained in:
parent
159aab16df
commit
ede7787e4e
|
@ -75,7 +75,7 @@ minetest.register_craft({
|
|||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = 'default:torch 4',
|
||||
output = 'torches:torch 4',
|
||||
recipe = {
|
||||
{'default:coal_lump'},
|
||||
{'default:stick'},
|
||||
|
@ -83,7 +83,7 @@ minetest.register_craft({
|
|||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = 'default:torch 4',
|
||||
output = 'torches:torch 4',
|
||||
recipe = {
|
||||
{'default:charcoal_lump'},
|
||||
{'default:stick'},
|
||||
|
@ -738,7 +738,7 @@ minetest.register_craft({
|
|||
|
||||
minetest.register_craft({
|
||||
type = "fuel",
|
||||
recipe = "default:torch",
|
||||
recipe = "torches:torch",
|
||||
burntime = 4,
|
||||
})
|
||||
|
||||
|
|
Loading…
Reference in New Issue