vehicles app does not show vehicles
Donnyjohn1 opened this issue · 6 comments
Donnyjohn1 commented
Donnyjohn1 commented
Donnyjohn1 commented
also breaks qb garages script
Donnyjohn1 commented
im runnig the latest qb-garages
cfunkz commented
RegisterNetEvent('qb-garages:client:houseGarageConfig', function(garageConfig)
HouseGarages = garageConfig
end)
Find this and replace it with
RegisterNetEvent('qb-garages:client:houseGarageConfig', function(garageConfig)
Config.HouseGarages = garageConfig
end)
try that
Qb-garages/client/main.lua
HeyYuvraj commented
im runnig the latest qb-garages
Headover to QB-Phone/server/garage.lua
On line 56, Replace this block of code
if v.garage then
if Garages[v.garage] then
VehicleGarage = Garages[v.garage]["label"]
else
VehicleGarage = v.garage
end
end
With this
if v.garage then
if Config.Garages[v.garage] then
VehicleGarage = Config.Garages[v.garage]["label"]
else
VehicleGarage = v.garage
end
end
iiKline commented
Fixed in a previous update