From 01b4c53a9def1751a0e675495d26b8fd1152a65f Mon Sep 17 00:00:00 2001 From: Linden <65407488+thelindat@users.noreply.github.com> Date: Fri, 14 Oct 2022 11:46:06 +1100 Subject: [PATCH] fix(keybinds): typo --- imports/keybinds/client.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/imports/keybinds/client.lua b/imports/keybinds/client.lua index 1853459..b0dd830 100644 --- a/imports/keybinds/client.lua +++ b/imports/keybinds/client.lua @@ -24,7 +24,7 @@ lib.keybinds = { data.disable = disableKeybind RegisterCommand('+' .. data.name, function() - if not data.onReleased or data.disabled or IsPauseMenuActive() then return end + if not data.onPressed or data.disabled or IsPauseMenuActive() then return end data:onPressed() end)