Don't crash trying to right click unknown nodes while holding honeycomb

This commit is contained in:
teknomunk 2024-08-27 17:39:41 -05:00 committed by the-real-herowl
parent 64c04a2f0a
commit f9cd2500c0

View File

@ -18,10 +18,9 @@ function mcl_honey.wax_block(pos, node, player, itemstack)
if def and def._mcl_waxed_variant then if def and def._mcl_waxed_variant then
node.name = def._mcl_waxed_variant node.name = def._mcl_waxed_variant
elseif def and def.on_rightclick then
return def.on_rightclick(pos, node, player, itemstack)
else else
if def.on_rightclick then
return def.on_rightclick(pos, node, player, itemstack)
end
return return
end end