Shell arrows and other tweakings

This commit is contained in:
echoes91
2015-03-13 12:47:16 +01:00
parent 06afd1b8d7
commit b1e6edad73
18 changed files with 140 additions and 16 deletions

View File

@ -274,13 +274,13 @@ minetest.register_entity("throwing:arrow_tnt_entity", THROWING_ARROW_ENTITY)
minetest.register_craft({
output = 'throwing:arrow_tnt',
recipe = {
{'default:stick', 'default:stick', 'tnt:tnt'},
{'default:stick', 'tnt:tnt', 'default:bronze_ingot'},
}
})
minetest.register_craft({
output = 'throwing:arrow_tnt',
recipe = {
{'tnt:tnt', 'default:stick', 'default:stick'},
{'default:bronze_ingot', 'tnt:tnt', 'default:stick'},
}
})