From 312769dea7331e684fc83298e9cd0f7128b2ee1b Mon Sep 17 00:00:00 2001 From: Zjamnik Date: Sun, 11 Feb 2024 17:28:52 +0100 Subject: [PATCH] window title --- stratagems.ahk | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/stratagems.ahk b/stratagems.ahk index 89cff4e..700d6de 100644 --- a/stratagems.ahk +++ b/stratagems.ahk @@ -65,8 +65,8 @@ SetKeyDelay 100, 50 sendStratagem(keyname) { BlockInput "On" - ; Send "{LControl down}" . stratagems[getValue("HOTKEYS", keyname)] . "{LControl up}" - Send stratagems[getValue("HOTKEYS", keyname)] + Send "{LControl down}" . stratagems[getValue("HOTKEYS", keyname)] . "{LControl up}" + ; Send stratagems[getValue("HOTKEYS", keyname)] BlockInput "Off" } @@ -138,7 +138,7 @@ sendStratagem(keyname) { loop parse, IniRead(configPath, "HOTKEYS"), "`n" { hotkeyPair := StrSplit(A_LoopField, "=") - HotIfWinactive("Helldivers™ 2") + HotIfWinactive("HELLDIVERS™ 2") Hotkey(hotkeyPair[1], sendStratagem) }