mirror of
https://git.minetest.land/VoxeLibre/VoxeLibre.git
synced 2024-11-04 23:31:05 +01:00
Don't crash trying to right click unknown nodes while holding honeycomb
This commit is contained in:
parent
64c04a2f0a
commit
f9cd2500c0
1 changed files with 2 additions and 3 deletions
|
@ -18,10 +18,9 @@ function mcl_honey.wax_block(pos, node, player, itemstack)
|
|||
|
||||
if def and def._mcl_waxed_variant then
|
||||
node.name = def._mcl_waxed_variant
|
||||
elseif def and def.on_rightclick then
|
||||
return def.on_rightclick(pos, node, player, itemstack)
|
||||
else
|
||||
if def.on_rightclick then
|
||||
return def.on_rightclick(pos, node, player, itemstack)
|
||||
end
|
||||
return
|
||||
end
|
||||
|
||||
|
|
Loading…
Reference in a new issue