From 0b683fdd746255bff13e32f4ce6f825005a08734 Mon Sep 17 00:00:00 2001 From: Thomas Dick Date: Thu, 26 Mar 2020 23:50:39 -0400 Subject: [PATCH] Tinybrain forgot to reset the AFK timer lol! --- UltimateAFK/AFKComponent.cs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/UltimateAFK/AFKComponent.cs b/UltimateAFK/AFKComponent.cs index 0e5e519..9b5695f 100644 --- a/UltimateAFK/AFKComponent.cs +++ b/UltimateAFK/AFKComponent.cs @@ -76,7 +76,10 @@ private void AFKChecker() } } else + { this.AFKLastPosition = CurrentPos; + this.AFKTime = 0; + } } } }