View Single Post
07-31-16, 07:39 PM   #4
Phanx
Cat.
 
Phanx's Avatar
AddOn Author - Click to view addons
Join Date: Mar 2006
Posts: 5,617
Yes, probably. You may also want to handle Get/SetEndDelay. I'm not sure what those return if there's no delay, but you may need to check for that:

lua Code:
  1. a:SetStartDelay((a:GetStartDelay() or 0) * 0.5)
  2. a:SetEndDelay((a:GetEndDelay() or 0) * 0.5)
__________________
Retired author of too many addons.
Message me if you're interested in taking over one of my addons.
Don’t message me about addon bugs or programming questions.
  Reply With Quote