Fixed crafting recpies for arrow

Fixed the crafting recipes for "throwing:arrow" so that it uses the new
naming rather than the "default" naming.
This commit is contained in:
ExcaliburZero 2015-02-01 13:17:42 -05:00
parent 7b38783334
commit e6b5e87003

View File

@ -84,13 +84,13 @@ minetest.register_entity("throwing:arrow_entity", THROWING_ARROW_ENTITY)
minetest.register_craft({
output = "throwing:arrow 16",
recipe = {
{"default:stick", "default:stick", "default:steel_ingot"},
{"tools:stick", "tools:stick", "tools:steel_ingot"},
}
})
minetest.register_craft({
output = "throwing:arrow 16",
recipe = {
{"default:steel_ingot", "default:stick", "default:stick"},
{"tools:steel_ingot", "tools:stick", "tools:stick"},
}
})