refactor: comment out more debug messages

This commit is contained in:
Dan
2021-03-13 14:07:35 +00:00
parent 6ec766eb82
commit 699bca2ee4
2 changed files with 6 additions and 6 deletions

View File

@@ -108,7 +108,7 @@ end )
Citizen.CreateThread( function()
while ( true ) do
if ( IsPedGettingIntoAVehicle( PLY.ped ) ) then
UTIL:Notify( "DEBUG: Player getting in vehicle" )
-- UTIL:Notify( "DEBUG: Player getting in vehicle" )
local vehEntering = GetVehiclePedIsEntering( PLY.ped )
Citizen.Wait( 2000 )
@@ -116,7 +116,7 @@ Citizen.CreateThread( function()
local veh = GetVehiclePedIsIn( PLY.ped, false )
if ( veh == vehEntering ) then
UTIL:Notify( "DEBUG: Trigger sync" )
-- UTIL:Notify( "DEBUG: Trigger sync" )
SYNC:SyncDataOnEnter()
end
end