View Single Post
07-24-19, 06:04 PM   #4
myrroddin
A Pyroguard Emberseer
 
myrroddin's Avatar
AddOn Author - Click to view addons
Join Date: Oct 2008
Posts: 1,240
  1. What is RegisterModule? NewModule already does that.
  2. In the .tocs of the modules, you are missing a field.
Code:
## RequiredDeps: NameOfCoreAddOn
And if the second module requires the first module, its .toc should read:
Code:
## RequiredDeps: NameOfCoreAddOn, NameOfFirstModule
Next, in your core and modules, if they are their own addons as such with their own .toc files, then don't try to load them via the core addon's .toc.
  Reply With Quote