mobs:rabbit_hide to craft leather backpacks

Allow using rabbit hides to craft leather backpacks.
master
Hamlet 2018-04-08 18:32:01 +02:00 committed by GitHub
parent 05cdbec45c
commit 81e768d543
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 9 additions and 0 deletions

View File

@ -178,4 +178,13 @@ if mobs and ( mobs.redo or mobs.mod == 'redo') then
{"mobs:leather", "mobs:leather", "mobs:leather"},
}
})
minetest.register_craft({
output = "backpacks:backpack_leather",
recipe = {
{"mobs:rabbit_hide", "mobs:rabbit_hide", "mobs:rabbit_hide"},
{"mobs:rabbit_hide", "", "mobs:rabbit_hide"},
{"mobs:rabbit_hide", "mobs:rabbit_hide", "mobs:rabbit_hide"},
}
})
end