Merge pull request #12 from BerkieBb/patch-2

Fixed the saving of liveries
This commit is contained in:
QBCore Framework
2021-06-09 17:43:56 -05:00
committed by GitHub
+2 -2
View File
@@ -403,7 +403,7 @@ QBCore.Functions.GetVehicleProperties = function(vehicle)
modTrimB = GetVehicleMod(vehicle, 44),
modTank = GetVehicleMod(vehicle, 45),
modWindows = GetVehicleMod(vehicle, 46),
modLivery = GetVehicleLivery(vehicle)
modLivery = GetVehicleMod(vehicle, 48),
}
else
return
@@ -681,4 +681,4 @@ QBCore.Functions.SetVehicleProperties = function(vehicle, props)
SetVehicleLivery(vehicle, props.modLivery)
end
end
end
end