X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;f=src%2Fmodules%2Fm_conn_lusers.cpp;h=2d982301546310883b416e0fb79c27908c8ef58f;hb=9dd72b7003963d868a23da930a91300b49ab4959;hp=7bf2013e195f30d30f3156904a7bf9bb3c2a3e2c;hpb=6a997236cf5ed6bc5aaa0263183b1c90ec2e7191;p=user%2Fhenk%2Fcode%2Finspircd.git diff --git a/src/modules/m_conn_lusers.cpp b/src/modules/m_conn_lusers.cpp index 7bf2013e1..2d9823015 100644 --- a/src/modules/m_conn_lusers.cpp +++ b/src/modules/m_conn_lusers.cpp @@ -2,7 +2,7 @@ * | Inspire Internet Relay Chat Daemon | * +------------------------------------+ * - * Inspire is copyright (C) 2002-2004 ChatSpike-Dev. + * InspIRCd is copyright (C) 2002-2006 ChatSpike-Dev. * E-mail: * * @@ -32,20 +32,25 @@ class ModuleConnLUSERS : public Module Server *Srv; public: - ModuleConnLUSERS() + ModuleConnLUSERS(Server* Me) + : Module::Module(Me) { - Srv = new Server; + Srv = Me; } virtual ~ModuleConnLUSERS() { - delete Srv; } virtual Version GetVersion() { return Version(1,0,0,1,VF_VENDOR); } + + void Implements(char* List) + { + List[I_OnUserConnect] = 1; + } virtual void OnUserConnect(userrec* user) { @@ -55,10 +60,10 @@ class ModuleConnLUSERS : public Module // protocol module. Yes, at some point there will // be a way to get the current protocol module's name // from the core and probably a pointer to its class. - Module* Proto = FindModule("m_spanningtree.so"); + Module* Proto = Srv->FindModule("m_spanningtree.so"); if (Proto) { - Proto->OnPreCommand("LUSERS", NULL, 0, user) + Proto->OnPreCommand("LUSERS", NULL, 0, user, true); } else { @@ -84,9 +89,9 @@ class ModuleConnLUSERSFactory : public ModuleFactory { } - virtual Module * CreateModule() + virtual Module * CreateModule(Server* Me) { - return new ModuleConnLUSERS; + return new ModuleConnLUSERS(Me); } };