From 0ee118670997c9d77ea392c55fb7aaf1d044962a Mon Sep 17 00:00:00 2001 From: BerkieBb <82737367+BerkieBb@users.noreply.github.com> Date: Wed, 9 Jun 2021 21:50:10 +0200 Subject: [PATCH] Fixed the saving of liveries --- client/functions.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/client/functions.lua b/client/functions.lua index 4782415..8d951a8 100644 --- a/client/functions.lua +++ b/client/functions.lua @@ -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 \ No newline at end of file +end