further optimize and reformat mcl_honey's init.lua

This commit is contained in:
Michieal 2023-02-04 16:31:18 -05:00
parent 05f86a5f89
commit 35ff3e9f48
1 changed files with 2 additions and 7 deletions

View File

@ -41,14 +41,9 @@ minetest.register_craftitem("mcl_honey:honeycomb", {
end
local node = minetest.get_node(pointed_thing.under)
local pos = pointed_thing.under
local node_name = node.name
local def = minetest.registered_nodes[node_name]
if def and def._mcl_copper_waxed_variant then
-- wax the copper block.
return mcl_honey.wax_block(pos, node, placer, itemstack)
end
-- wax the block. This is the only viable usage of honeycomb's on_place. If it "fails" to wax, then nothing is changed.
return mcl_honey.wax_block(pos, node, placer, itemstack)
end,
})