diff options
-rw-r--r-- | bonemeal.lua | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/bonemeal.lua b/bonemeal.lua index f49e757..04c0d9e 100644 --- a/bonemeal.lua +++ b/bonemeal.lua @@ -7,13 +7,20 @@ minetest.register_craftitem("ethereal:bone", { inventory_image = "bone.png",
})
--- bonemeal recipe
+-- bonemeal recipes
minetest.register_craft({
type = "shapeless",
- output = 'ethereal:bonemeal 3',
+ output = 'ethereal:bonemeal 2',
recipe = {'ethereal:bone'},
})
+minetest.register_craft({
+ type = "shapeless",
+ output = 'ethereal:bonemeal 4',
+ recipe = {'bones:bones'},
+})
+
+
-- add bones to dirt
minetest.override_item("default:dirt", {
drop = {
|