Merge pull request 'Fix waxing duplication of shulker box' (#3527) from waxing into master

Reviewed-on: https://git.minetest.land/MineClone2/MineClone2/pulls/3527
Reviewed-by: ancientmarinerdev <ancientmariner_dev@proton.me>
This commit is contained in:
ancientmarinerdev 2023-03-10 00:18:38 +00:00
commit 325de7f2cd
1 changed files with 3 additions and 2 deletions

View File

@ -16,10 +16,11 @@ function mcl_honey.wax_block(pos, node, player, itemstack)
local def = minetest.registered_nodes[node.name]
if def and def._mcl_copper_waxed_variant then
node.name = def._mcl_copper_waxed_variant
if not def or not def._mcl_copper_waxed_variant then
return
end
node.name = def._mcl_copper_waxed_variant
minetest.set_node(pos, node)
awards.unlock(player:get_player_name(), "mcl:wax_on")
if not minetest.is_creative_enabled(player:get_player_name()) then