Make arrows craftable again

This commit is contained in:
upsilon 2017-06-20 17:56:43 +02:00
parent 541f102b15
commit 5f94a6b27d
No known key found for this signature in database
GPG Key ID: A80DAE1F266E1C3C
1 changed files with 2 additions and 2 deletions

View File

@ -276,13 +276,13 @@ function throwing.register_arrow(name, def)
if def.itemcraft then
minetest.register_craft({
output = throwing.modname..":"..name.." "..tostring(def.craft_quantity or 1),
output = name.." "..tostring(def.craft_quantity or 1),
recipe = {
{def.itemcraft, "default:stick", "default:stick"}
}
})
minetest.register_craft({
output = throwing.modname..":"..name.." "..tostring(def.craft_quantity or 1),
output = name.." "..tostring(def.craft_quantity or 1),
recipe = {
{ "default:stick", "default:stick", def.itemcraft}
}