From b1056c12465c7cc939e020afa2b89d916fa5b7d9 Mon Sep 17 00:00:00 2001 From: Linden <65407488+thelindat@users.noreply.github.com> Date: Sun, 19 Jun 2022 14:06:59 +1000 Subject: [PATCH] tweak(vehicleProperties): return true on success --- fxmanifest.lua | 2 +- resource/vehicleProperties/client.lua | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/fxmanifest.lua b/fxmanifest.lua index 23fe3a1..6722f11 100644 --- a/fxmanifest.lua +++ b/fxmanifest.lua @@ -23,7 +23,7 @@ game 'gta5' --[[ Resource Information ]]-- name 'ox_lib' author 'Linden' -version '2.5.1' +version '2.5.2' repository 'https://github.com/overextended/ox_lib' description 'A library of shared functions to utilise in other resources.' diff --git a/resource/vehicleProperties/client.lua b/resource/vehicleProperties/client.lua index c4dd5b5..0e4a85d 100644 --- a/resource/vehicleProperties/client.lua +++ b/resource/vehicleProperties/client.lua @@ -487,4 +487,6 @@ function lib.setVehicleProperties(vehicle, props) if props.modLightbar then SetVehicleMod(vehicle, 49, props.modLightbar, false) end + + return true end