fix: typo

job vehicles can be bought again
This commit is contained in:
DokaDoka
2022-01-20 19:17:48 +11:00
parent cdb32a172b
commit 919a254e22
2 changed files with 2 additions and 2 deletions
@@ -212,7 +212,7 @@ function getPriceFromHash(vehicleHash, jobGrade, type)
for i = 1, #vehicles do
local vehicle = vehicles[i]
if GetHashKey(vehicles.model) == vehicleHash then
if GetHashKey(vehicle.model) == vehicleHash then
return vehicle.price
end
end
+1 -1
View File
@@ -397,7 +397,7 @@ function getPriceFromHash(vehicleHash, jobGrade, type)
for i = 1, #vehicles do
local vehicle = vehicles[i]
if GetHashKey(vehicles.model) == vehicleHash then
if GetHashKey(vehicle.model) == vehicleHash then
return vehicle.price
end
end