View Single Post
07-27-18, 02:27 AM   #6
pcg79
A Murloc Raider
AddOn Author - Click to view addons
Join Date: Jul 2018
Posts: 7
Originally Posted by Kanegasi View Post
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)
That worked. Thank you!
  Reply With Quote