mirror of
https://git.minetest.land/VoxeLibre/VoxeLibre.git
synced 2024-11-10 02:01:07 +01:00
Fix #4613
This commit is contained in:
parent
ecfa42d51d
commit
64c04a2f0a
1 changed files with 3 additions and 0 deletions
|
@ -19,6 +19,9 @@ function mcl_honey.wax_block(pos, node, player, itemstack)
|
|||
if def and def._mcl_waxed_variant then
|
||||
node.name = def._mcl_waxed_variant
|
||||
else
|
||||
if def.on_rightclick then
|
||||
return def.on_rightclick(pos, node, player, itemstack)
|
||||
end
|
||||
return
|
||||
end
|
||||
|
||||
|
|
Loading…
Reference in a new issue