diff options
author | TenPlus1 <kinsellaja@yahoo.com> | 2016-07-13 10:56:15 +0100 |
---|---|---|
committer | TenPlus1 <kinsellaja@yahoo.com> | 2016-07-13 10:56:15 +0100 |
commit | 590c6e0b876a971891d852211ec51507548e729e (patch) | |
tree | 34973d01cba9a07de9c7beab8f99dc03e4f56e7d /bonemeal.lua | |
parent | 592c2e8ec212f0c2e6102a2ab41163b58aab409a (diff) |
changed bonemeal recipe
Diffstat (limited to 'bonemeal.lua')
-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 = {
|