mirror of
https://git.minetest.land/VoxeLibre/VoxeLibre.git
synced 2024-11-16 16:11:06 +01:00
Remove unnecessary vectory copy
This commit is contained in:
parent
1a20857802
commit
baef54f7c8
1 changed files with 2 additions and 2 deletions
|
@ -275,12 +275,12 @@ function mcl_util.bypass_buildable_to(func)
|
|||
end
|
||||
|
||||
-- Place above pointed node
|
||||
local place_to = vector.copy(above)
|
||||
local place_to = above
|
||||
|
||||
-- If node under is buildable_to, check for callback result and place into it instead
|
||||
if olddef_under.buildable_to and not func(oldnode_under.name) then
|
||||
log("info", "node under is buildable to")
|
||||
place_to = vector.copy(under)
|
||||
place_to = under
|
||||
end
|
||||
|
||||
if minetest.is_protected(place_to, playername) then
|
||||
|
|
Loading…
Reference in a new issue