fix(imports/points): incorrect var ref

Them feels when you forget to push a commit before making a release.
This commit is contained in:
Linden
2022-03-25 10:58:46 +00:00
parent 500315ddaa
commit c2bfb83816

View File

@@ -32,7 +32,7 @@ CreateThread(function()
if distance <= point.distance then if distance <= point.distance then
point.currentDistance = distance point.currentDistance = distance
if point.inside then if point.nearby then
nearby[#nearby + 1] = point nearby[#nearby + 1] = point
end end
@@ -53,7 +53,7 @@ CreateThread(function()
while true do while true do
Wait(0) Wait(0)
for i = 1, #nearby do for i = 1, #nearby do
nearby[i]:inside() nearby[i]:nearby()
end end
end end
end) end)