parent
98116c8633
commit
77839a0e03
|
@ -1,4 +1,4 @@
|
||||||
import { getUIGap } from "./gameInterface.js";
|
import { getUIGap, getVar } from "./gameInterface.js";
|
||||||
import { getSettings } from "./settings.js";
|
import { getSettings } from "./settings.js";
|
||||||
|
|
||||||
export const keybindFunctions = {
|
export const keybindFunctions = {
|
||||||
|
@ -9,7 +9,7 @@ export const keybindFunctions = {
|
||||||
export const keybindHandler = key => {
|
export const keybindHandler = key => {
|
||||||
const keybindData = getSettings().attackPercentageKeybinds.find(keybind => keybind.key === key);
|
const keybindData = getSettings().attackPercentageKeybinds.find(keybind => keybind.key === key);
|
||||||
if (keybindData === undefined) return false;
|
if (keybindData === undefined) return false;
|
||||||
executeKeybind(keybindData);
|
if (getVar("gameState") !== 0) executeKeybind(keybindData);
|
||||||
return true;
|
return true;
|
||||||
};
|
};
|
||||||
function executeKeybind(keybind) {
|
function executeKeybind(keybind) {
|
||||||
|
|
Loading…
Reference in New Issue