mirror of
https://git.minetest.land/MineClone2/MineClone2.git
synced 2024-11-05 23:33:50 +01:00
Don't crash trying to right click unknown nodes while holding honeycomb
This commit is contained in:
parent
64c04a2f0a
commit
f9cd2500c0
@ -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
|
||||||
else
|
elseif def and def.on_rightclick then
|
||||||
if def.on_rightclick then
|
|
||||||
return def.on_rightclick(pos, node, player, itemstack)
|
return def.on_rightclick(pos, node, player, itemstack)
|
||||||
end
|
else
|
||||||
return
|
return
|
||||||
end
|
end
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user