add lb custom function

This commit is contained in:
TenPlus1 2017-07-24 20:31:01 +01:00
parent 2fd7407366
commit c662f2f91e
1 changed files with 11 additions and 0 deletions

View File

@ -1,11 +1,22 @@
-- add lucky blocks
local function growy(pos, player)
local dpos = minetest.find_node_near(pos, 1, "group:soil")
if dpos then
bonemeal:on_use(dpos, 5)
end
end
if minetest.get_modpath("lucky_block") then
lucky_block:add_blocks({
{"lig"},
{"dro", {"bonemeal:mulch", "bonemeal:bonemeal", "bonemeal:fertiliser"}, 10},
{"cus", growy},
})
end -- END IF