changed bonemeal recipe
This commit is contained in:
parent
592c2e8ec2
commit
590c6e0b87
11
bonemeal.lua
11
bonemeal.lua
@ -7,13 +7,20 @@ minetest.register_craftitem("ethereal:bone", {
|
|||||||
inventory_image = "bone.png",
|
inventory_image = "bone.png",
|
||||||
})
|
})
|
||||||
|
|
||||||
-- bonemeal recipe
|
-- bonemeal recipes
|
||||||
minetest.register_craft({
|
minetest.register_craft({
|
||||||
type = "shapeless",
|
type = "shapeless",
|
||||||
output = 'ethereal:bonemeal 3',
|
output = 'ethereal:bonemeal 2',
|
||||||
recipe = {'ethereal:bone'},
|
recipe = {'ethereal:bone'},
|
||||||
})
|
})
|
||||||
|
|
||||||
|
minetest.register_craft({
|
||||||
|
type = "shapeless",
|
||||||
|
output = 'ethereal:bonemeal 4',
|
||||||
|
recipe = {'bones:bones'},
|
||||||
|
})
|
||||||
|
|
||||||
|
|
||||||
-- add bones to dirt
|
-- add bones to dirt
|
||||||
minetest.override_item("default:dirt", {
|
minetest.override_item("default:dirt", {
|
||||||
drop = {
|
drop = {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user