View Single Post
07-26-18, 04:24 PM   #5
Kanegasi
A Molten Giant
 
Kanegasi's Avatar
AddOn Author - Click to view addons
Join Date: Apr 2007
Posts: 666
I have seen this with C_Timer.After right at logins, but Overachiever's author also noticed this. They found a weird workaround where you wrap the actual delay you want in a zero second delay.

Lua Code:
  1. C_Timer.After(0,function()
  2.     C_Timer.After(5,function()
  3.         -- do stuff
  4.     end)
  5. end)
  Reply With Quote