From 08819340a672c0b24161673a360f194aa6e3bc26 Mon Sep 17 00:00:00 2001 From: Dan Date: Thu, 30 Jan 2020 20:13:32 +0000 Subject: [PATCH] Removed debug mode stuff --- cl_radar.lua | 7 +------ config.lua | 5 +---- 2 files changed, 2 insertions(+), 10 deletions(-) diff --git a/cl_radar.lua b/cl_radar.lua index 1d15c43..ecd2c2e 100644 --- a/cl_radar.lua +++ b/cl_radar.lua @@ -1578,12 +1578,7 @@ Citizen.CreateThread( function() end end ) -function RunControlManager() - -- 'Z' key, toggles debug mode - --[[ if ( IsDisabledControlJustPressed( 1, 20 ) ) then - self.config.debug_mode = not self.config.debug_mode - end ]] - +function RunControlManager() if ( not RADAR:GetKeyLockState() ) then -- Opens the remote control if ( IsDisabledControlJustPressed( 1, CONFIG.remote_control_key ) ) then diff --git a/config.lua b/config.lua index ed67656..59cb669 100644 --- a/config.lua +++ b/config.lua @@ -35,7 +35,4 @@ CONFIG.plate_rear_lock_key = 109 -- Radar fast limit locking -- When enabled, the player will be able to define a fast limit within the radar's menu, when a vehicle -- exceeds the fast limit, it will be locked into the fast box. Default setting is disabled to maintain realism -CONFIG.allow_fast_limit = true - --- Debug mode -CONFIG.debug_mode = false \ No newline at end of file +CONFIG.allow_fast_limit = true \ No newline at end of file