1
0
mirror of https://github.com/sys4-fr/server-nalc.git synced 2024-12-24 17:50:37 +01:00

Bugfix Arrow_sign

The {'group:sign'} is useless, i remove it for a more simple and not
buggy way to craft {'arrow_signs:wall'} with {'default:sign_wall',
'default:stick'}
This commit is contained in:
Ombridride 2014-11-04 21:06:21 +01:00
parent b48e22437e
commit f3de8c2709

View File

@ -182,12 +182,12 @@ minetest.register_node("arrow_signs:wall", {
minetest.register_craft({
type = 'shapeless',
output = 'arrow_signs:wall',
recipe = {'group:sign', 'default:stick'},
recipe = {'default:sign_wall', 'default:stick'},
})
minetest.register_craft({
output = 'default:sign_wall',
recipe = {
{'group:sign'},
{'arrow_signs:wall'},
}
})