From e3722ec50900a30279fd11c9bd41aa0c5cdd45b5 Mon Sep 17 00:00:00 2001 From: David Daily Date: Tue, 26 Jan 2021 11:13:02 -0600 Subject: [PATCH] remove extra goto I shouldn't have put that there in the first place, was trying to get it so you could just call functions and #Include flag.ahk in your own script. Figured that wasn't a good idea --- flag.ahk | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/flag.ahk b/flag.ahk index be0d394..cb7efc0 100644 --- a/flag.ahk +++ b/flag.ahk @@ -139,7 +139,7 @@ translate(url, data, length) If (length = 0) { req(url, data) - Goto, tEnd + ExitApp } Else { time_to_run := length * 1000 start_time := A_TickCount @@ -154,7 +154,6 @@ translate(url, data, length) Sleep, (length * 1000) off() } - tEnd: } off()