Advanced Garages
Liveries not saving
This is a fix for Benny's (qb-customs), not JG Advanced Garages. Take your existing vehicles to Benny's and re-apply the livery for the fix to take effect.
Fix this by making a small modification to qb-core:
- Go to
[qb]/qb-core/client/functions.lua - Search (by pressing CTRL+F) for the code below and remove it:
and GetVehicleLivery(vehicle) ~= 0The function you modified should now look like this:
local modLivery = GetVehicleMod(vehicle, 48)
if GetVehicleMod(vehicle, 48) == -1 then
modLivery = GetVehicleLivery(vehicle)
end