Added improvement for when Totemic Recall

When clicked very quickly after CD ends, the timers would not remove. This should fix it.
This commit is contained in:
MDGitHubRepo
2024-12-01 16:24:31 -05:00
parent e109bf4bfd
commit 82128bc35f
+1 -1
View File
@@ -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;