Fixed torch arrow recipe

This commit is contained in:
echoes91 2015-03-16 15:23:29 +01:00
parent 280afde321
commit 79a546378e
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', 'group:coal'},
}
})
minetest.register_craft({
output = 'throwing:arrow_torch 4',
recipe = {
{'default:coal', 'default:stick', 'default:stick'},
{'group:coal', 'default:stick', 'default:stick'},
}
})