mirror of
https://git.minetest.land/VoxeLibre/VoxeLibre.git
synced 2024-11-16 16:11:06 +01:00
further optimize and reformat mcl_honey's init.lua
This commit is contained in:
parent
05f86a5f89
commit
35ff3e9f48
1 changed files with 2 additions and 7 deletions
|
@ -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.
|
||||
-- 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
|
||||
end,
|
||||
})
|
||||
|
||||
|
|
Loading…
Reference in a new issue