mirror of
https://github.com/kepler155c/opus
synced 2025-11-08 19:43:38 +00:00
gps.lua: Added nil and nan checks
This commit is contained in:
@@ -98,7 +98,7 @@ function GPS.trilaterate(tFixes)
|
|||||||
if pos2 then
|
if pos2 then
|
||||||
pos1, pos2 = narrow(pos1, pos2, tFixes[1])
|
pos1, pos2 = narrow(pos1, pos2, tFixes[1])
|
||||||
end
|
end
|
||||||
if not pos2 then
|
if not pos2 and pos1 and not (pos1.x ~= pos1.x) then
|
||||||
return pos1, attemps
|
return pos1, attemps
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|||||||
Reference in New Issue
Block a user