From 82128bc35ff1d5f72bca93fe92b691796c3f2b73 Mon Sep 17 00:00:00 2001 From: MDGitHubRepo Date: Sun, 1 Dec 2024 16:24:31 -0500 Subject: [PATCH] Added improvement for when Totemic Recall When clicked very quickly after CD ends, the timers would not remove. This should fix it. --- CallOfElements.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CallOfElements.lua b/CallOfElements.lua index 6b8d732..63aca47 100644 --- a/CallOfElements.lua +++ b/CallOfElements.lua @@ -139,7 +139,7 @@ function TotemicRecallTimerReset() if ( TRstart > 0 and COE_TotemicRecallPreviousCDExpired) then -- No more than one call is necessary to check if the cooldown is actually Totemic Recall - if (TRduration < 6 and COE_TotemicRecallTimerResetCount < 1) then + if (TRduration < 6 and COE_TotemicRecallTimerResetCount < 2) then Chronos.schedule(.25, TotemicRecallTimerReset); COE_TotemicRecallTimerResetCount = COE_TotemicRecallTimerResetCount + 1;