Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions [editor]/editor_main/client/main.lua
Original file line number Diff line number Diff line change
Expand Up @@ -1178,7 +1178,7 @@ function processCameraLineOfSight()
local surfaceFound, targetX, targetY, targetZ, targetElement,
nx, ny, nz, material, lighting, piece,
buildingId, bx, by, bz, brx, bry, brz, buildingLOD
= processLineOfSight(camX, camY, camZ, endX, endY, endZ, true, true, true, true, true, true, false, true, localPlayer, true)
= processLineOfSight(camX, camY, camZ, endX, endY, endZ, true, true, true, true, true, false, false, false, localPlayer, true)

-- Is this a collision patch object
if targetElement and isColPatchObject(targetElement) then
Expand Down Expand Up @@ -1209,7 +1209,7 @@ function processCursorLineOfSight()
local surfaceFound, targetX, targetY, targetZ, targetElement,
nx, ny, nz, material, lighting, piece,
buildingId, bx, by, bz, brx, bry, brz, buildingLOD
= processLineOfSight(camX, camY, camZ, endX, endY, endZ, true, true, true, true, true, true, false, true, localPlayer, true)
= processLineOfSight(camX, camY, camZ, endX, endY, endZ, true, true, true, true, true, false, false, false, localPlayer, true)

-- Is this a collision patch object
if targetElement and isColPatchObject(targetElement) then
Expand Down