Skip to content
Snippets Groups Projects
Commit f18e8211 authored by TenPlus1's avatar TenPlus1
Browse files

Have animalmaterials:bone craft into bonemeal if found

parent d0b896e8
No related branches found
No related tags found
No related merge requests found
......@@ -26,6 +26,16 @@ minetest.register_craft( {
recipe = {"ethereal:bonemeal"},
})
-- have animalmaterials bone craft into bonemeal if found
if minetest.get_modpath('animalmaterials') then
minetest.register_craft({
type = "shapeless",
output = 'ethereal:bonemeal 2',
recipe = {'animalmaterials:bone'},
})
end
-- add bones to dirt
minetest.override_item("default:dirt", {
drop = {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment