From d6526452bb96db16bbde91fd0fe718e4107a8007 Mon Sep 17 00:00:00 2001 From: Dan Date: Fri, 6 Mar 2020 10:08:47 +0000 Subject: [PATCH] Key bind set key now falls under the keylock --- cl_radar.lua | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/cl_radar.lua b/cl_radar.lua index 943011a..707949a 100644 --- a/cl_radar.lua +++ b/cl_radar.lua @@ -1719,17 +1719,17 @@ function RunControlManager() if ( IsDisabledControlJustPressed( 1, CONFIG.keys[keyType].plate_rear_lock ) ) then READER:LockCam( "rear", true, false ) end + + -- Toggles between the keybind types + if ( IsDisabledControlJustPressed( 1, CONFIG.keys.switch_keys ) ) then + RADAR:ToggleFullKeyboard() + end end -- Toggles the key lock state if ( IsDisabledControlJustPressed( 1, CONFIG.keys.key_lock ) ) then RADAR:ToggleKeyLock() end - - -- Toggles between the keybind types - if ( IsDisabledControlJustPressed( 1, CONFIG.keys.switch_keys ) ) then - RADAR:ToggleFullKeyboard() - end end end