mirror of
https://git.minetest.land/MineClone2/MineClone2.git
synced 2025-04-05 05:41:28 +02:00
Fix waxing duplication of shulker box
This commit is contained in:
@ -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
|
||||
|
Reference in New Issue
Block a user