fix(imports/getClosestPed): correct variable name (#348)

This commit is contained in:
Randolio
2023-06-12 19:51:20 +01:00
committed by GitHub
parent 1f76590b53
commit 0a3edcbe4d

View File

@@ -16,7 +16,7 @@ function lib.getClosestPed(coords, maxDistance)
if distance < maxDistance then if distance < maxDistance then
maxDistance = distance maxDistance = distance
closestObject = ped closestPed = ped
closestCoords = pedCoords closestCoords = pedCoords
end end
end end