From e783d659a14b893a37704df773be4d7f9ab4f057 Mon Sep 17 00:00:00 2001 From: Dan Date: Wed, 4 Dec 2019 10:12:02 +0000 Subject: [PATCH] Update cl_radar.lua --- cl_radar.lua | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/cl_radar.lua b/cl_radar.lua index 772e77e..9d4d31c 100644 --- a/cl_radar.lua +++ b/cl_radar.lua @@ -1059,8 +1059,6 @@ function RADAR:UpdateVehiclePool() if ( DoesEntityExist( PLY.veh ) and PLY.inDriverSeat and PLY.vehClassValid and self:CanPerformMainTask() and self:IsEitherAntennaOn() ) then local vehs = self:GetAllVehicles() self:SetVehiclePool( vehs ) - - Citizen.Wait( 3000 ) end end @@ -1068,7 +1066,7 @@ Citizen.CreateThread( function() while ( true ) do RADAR:UpdateVehiclePool() - Citizen.Wait( 0 ) + Citizen.Wait( 3000 ) end end )