diff options
| author | 2006-08-10 23:19:43 +0000 | |
|---|---|---|
| committer | 2006-08-10 23:19:43 +0000 | |
| commit | b37a253d962ed7af1ea7a328abf2a1af74f30759 (patch) | |
| tree | a43660b037c817393f7b4ab75071fe4f380f1058 /src/modules/m_spy.cpp | |
| parent | So much stuff changed in this one, i forgot most of it. (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/modules/m_spy.cpp')
| -rw-r--r-- | src/modules/m_spy.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/modules/m_spy.cpp b/src/modules/m_spy.cpp index 4ded5374f..55a1c6751 100644 --- a/src/modules/m_spy.cpp +++ b/src/modules/m_spy.cpp @@ -145,9 +145,9 @@ class ModuleSpy : public Module cmd_spylist *mycommand; cmd_spynames *mycommand2; public: - ModuleSpy(Server* Me) : Module::Module(Me) + ModuleSpy(InspIRCd* Me) : Module::Module(Me) { - Srv = Me; + mycommand = new cmd_spylist(); mycommand2 = new cmd_spynames(); Srv->AddCommand(mycommand); @@ -176,7 +176,7 @@ class ModuleSpyFactory : public ModuleFactory { } - virtual Module * CreateModule(Server* Me) + virtual Module * CreateModule(InspIRCd* Me) { return new ModuleSpy(Me); } |
