Update master #1

Merged
THE-NERD2 merged 296 commits from VoxeLibre/VoxeLibre:master into master 2024-11-21 19:51:04 +01:00
1 changed files with 2 additions and 3 deletions
Showing only changes of commit f9cd2500c0 - Show all commits

View File

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