From 77839a0e0372c0d06f813e0f7562f8bebe706993 Mon Sep 17 00:00:00 2001 From: peshomir <80340328+peshomir@users.noreply.github.com> Date: Sat, 8 Mar 2025 09:33:11 +0200 Subject: [PATCH] Fix keybind handling bug Keybinds will be executed only when a game is active --- src/keybinds.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/keybinds.js b/src/keybinds.js index 921c50e..738c453 100644 --- a/src/keybinds.js +++ b/src/keybinds.js @@ -1,4 +1,4 @@ -import { getUIGap } from "./gameInterface.js"; +import { getUIGap, getVar } from "./gameInterface.js"; import { getSettings } from "./settings.js"; export const keybindFunctions = { @@ -9,7 +9,7 @@ export const keybindFunctions = { export const keybindHandler = key => { const keybindData = getSettings().attackPercentageKeybinds.find(keybind => keybind.key === key); if (keybindData === undefined) return false; - executeKeybind(keybindData); + if (getVar("gameState") !== 0) executeKeybind(keybindData); return true; }; function executeKeybind(keybind) {