Fixed torch arrow crafting recipe

Replaced the incorrect default:coal in the torch arrow's crafting recipe with the correct default:coal_lump .
This commit is contained in:
ExcaliburZero 2015-03-15 14:01:59 -04:00
parent 31e4dea2b6
commit 7252b85a80
1 changed files with 2 additions and 2 deletions

View File

@ -129,13 +129,13 @@ minetest.register_entity("throwing:arrow_torch_entity", THROWING_ARROW_ENTITY)
minetest.register_craft({
output = 'throwing:arrow_torch 4',
recipe = {
{'default:stick', 'default:stick', 'default:coal'},
{'default:stick', 'default:stick', 'default:coal_lump'},
}
})
minetest.register_craft({
output = 'throwing:arrow_torch 4',
recipe = {
{'default:coal', 'default:stick', 'default:stick'},
{'default:coal_lump', 'default:stick', 'default:stick'},
}
})