View Single Post
01-13-15, 09:18 PM   #61
Phanx
Cat.
 
Phanx's Avatar
AddOn Author - Click to view addons
Join Date: Mar 2006
Posts: 5,617
Keep in mind that files are read in the order listed in your TOC. If your "config" file is listed after your "main" file, then values you added to your private table in the "config" file aren't available in the main chunk of your "main" file. Either list your "config" file first (easiest) or make sure you don't try to access any of those values until after all your files have been read (during/after your addon's ADDON_LOADED event).
__________________
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