bonemeal/lucky_block.lua

23 lines
363 B
Lua
Raw Normal View History

2017-07-24 21:17:20 +02:00
-- add lucky blocks
2017-07-24 21:31:01 +02:00
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
2017-07-24 21:17:20 +02:00
if minetest.get_modpath("lucky_block") then
lucky_block:add_blocks({
{"lig"},
{"dro", {"bonemeal:mulch", "bonemeal:bonemeal", "bonemeal:fertiliser"}, 10},
2017-07-24 21:31:01 +02:00
{"cus", growy},
2017-07-24 21:17:20 +02:00
})
end -- END IF