mirror of
https://git.minetest.land/VoxeLibre/VoxeLibre.git
synced 2024-11-24 11:31:09 +01:00
Patch mcl_flowers for pickblock
This commit is contained in:
parent
02b24a9032
commit
718ceb25cf
1 changed files with 2 additions and 1 deletions
|
@ -383,7 +383,7 @@ local function add_large_plant(name, desc, longdesc, bottom_img, top_img, inv_im
|
|||
end,
|
||||
groups = bottom_groups,
|
||||
sounds = mcl_sounds.node_sound_leaves_defaults(),
|
||||
mesh = mesh
|
||||
mesh = mesh,
|
||||
})
|
||||
|
||||
local top_groups = table.copy(bottom_groups)
|
||||
|
@ -421,6 +421,7 @@ local function add_large_plant(name, desc, longdesc, bottom_img, top_img, inv_im
|
|||
end,
|
||||
groups = top_groups,
|
||||
sounds = mcl_sounds.node_sound_leaves_defaults(),
|
||||
_vl_pickblock = "mcl_flowers:"..name,
|
||||
})
|
||||
|
||||
if minetest.get_modpath("doc") and longdesc then
|
||||
|
|
Loading…
Reference in a new issue