Mercurial > wow > reaction
diff ReAction.lua @ 109:410d036c43b2
- reorganize modularity file structure (part 1)
author | Flick <flickerstreak@gmail.com> |
---|---|
date | Thu, 08 Jan 2009 00:57:27 +0000 |
parents | 3699d7dad312 |
children | ea541cc7194f |
line wrap: on
line diff
--- a/ReAction.lua Wed Jan 07 00:57:02 2009 +0000 +++ b/ReAction.lua Thu Jan 08 00:57:27 2009 +0000 @@ -183,13 +183,6 @@ function CallModuleMethod(modulename, method, ...) local m = self:GetModule(modulename,true) - if not m then - LoadAddOn(("ReAction_%s"):format(modulename)) - m = self:GetModule(modulename,true) - if m then - dbprint(("succesfully loaded LOD module: %s"):format(modulename)) - end - end if m then if type(m) == "table" and type(m[method]) == "function" then m[method](m,...)