diff options
author | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2006-08-10 23:19:43 +0000 |
---|---|---|
committer | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2006-08-10 23:19:43 +0000 |
commit | b37a253d962ed7af1ea7a328abf2a1af74f30759 (patch) | |
tree | a43660b037c817393f7b4ab75071fe4f380f1058 /src/inspircd.cpp | |
parent | f9636a2eff46f6829bf9e01c711ab1ba45a7d50a (diff) |
Note: FOR THE MOMENT, this is BROKEN. It wont run right until im done.
Changed Parameter for modules from Server* to InspIRCd*.
TODO: Move remaining Server* Modules into InspIRCd* and remove class Server.
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@4859 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/inspircd.cpp')
-rw-r--r-- | src/inspircd.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/inspircd.cpp b/src/inspircd.cpp index 439c4a305..83689b33c 100644 --- a/src/inspircd.cpp +++ b/src/inspircd.cpp @@ -582,7 +582,7 @@ bool InspIRCd::LoadModule(const char* filename) } if ((long)factory[this->ModCount+1]->factory != -1) { - Module* m = factory[this->ModCount+1]->factory->CreateModule(MyServer); + Module* m = factory[this->ModCount+1]->factory->CreateModule(this); modules[this->ModCount+1] = m; /* save the module and the module's classfactory, if * this isnt done, random crashes can occur :/ */ |