This commit is contained in:
teknomunk 2024-08-27 05:55:57 -05:00 committed by the-real-herowl
parent ecfa42d51d
commit 64c04a2f0a

View File

@ -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