mirror of
https://github.com/CommunityOx/ox_lib.git
synced 2026-08-17 06:56:03 +01:00
fix(client/points): nil index when nearby point is removed (#186)
Co-authored-by: Linden <65407488+thelindat@users.noreply.github.com>
This commit is contained in:
@@ -75,7 +75,11 @@ CreateThread(function()
|
|||||||
if nearbyCount ~= 0 then
|
if nearbyCount ~= 0 then
|
||||||
tick = SetInterval(function()
|
tick = SetInterval(function()
|
||||||
for i = 1, nearbyCount do
|
for i = 1, nearbyCount do
|
||||||
nearbyPoints[i]:nearby()
|
local point = nearbyPoints[i]
|
||||||
|
|
||||||
|
if point then
|
||||||
|
point:nearby()
|
||||||
|
end
|
||||||
end
|
end
|
||||||
end)
|
end)
|
||||||
end
|
end
|
||||||
|
|||||||
Reference in New Issue
Block a user