View Single Post
08-13-15, 09:21 AM   #8
meribold
A Murloc Raider
 
meribold's Avatar
AddOn Author - Click to view addons
Join Date: Nov 2013
Posts: 5
Originally Posted by Seerah View Post
If Skada is in your dependencies, then it will be loaded before your addon. This means that Skada's ADDON_LOADED event will fire before your code is run. Which means that it's loaded already, and you don't need to wait for it.
This. Think about it, when the client gets to loading your event handler, ADDON_LOADED has already been posted for Skada, while your AddOn had no chance to react to it yet.

The question is why this even used to work.

Edit: I would suggest just checking for your own AddOn's name instead of "Skada".

Last edited by meribold : 08-13-15 at 09:25 AM.
  Reply With Quote