]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/modules/m_conn_lusers.cpp
Added <oper:swhois> to m_swhois, which will override <type:swhois> if specified
[user/henk/code/inspircd.git] / src / modules / m_conn_lusers.cpp
index c0be6123b469980d0506b9f02a70fab154e24489..06718348ef30b7d8e42f0cdbf7767cf6c03d0f3c 100644 (file)
@@ -23,7 +23,7 @@ using namespace std;
 
 /* $ModDesc: Sends the /LUSERS on connect */
 
-extern InspIRCd* ServerInstance;
+
 
 // This has to be the simplest module ever.
 // The RFC doesnt specify that you should send the /LUSERS numerics
@@ -33,7 +33,7 @@ class ModuleConnLUSERS : public Module
 {
  private:
         
-        Server *Srv;
+        
  public:
        ModuleConnLUSERS(InspIRCd* Me)
                : Module::Module(Me)
@@ -47,7 +47,7 @@ class ModuleConnLUSERS : public Module
        
        virtual Version GetVersion()
        {
-               return Version(1,0,0,1,VF_VENDOR);
+               return Version(1,1,0,1,VF_VENDOR,API_VERSION);
        }
 
        void Implements(char* List)
@@ -66,11 +66,11 @@ class ModuleConnLUSERS : public Module
                Module* Proto = ServerInstance->FindModule("m_spanningtree.so");
                if (Proto)
                {
-                       Proto->OnPreCommand("LUSERS", NULL, 0, user, true);
+                       Proto->OnPreCommand("LUSERS", NULL, 0, user, true, "LUSERS");
                }
                else
                {
-                       Srv->CallCommandHandler("LUSERS", NULL, 0, user);
+                       ServerInstance->CallCommandHandler("LUSERS", NULL, 0, user);
                }
        }
 };