]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/modules/m_conn_lusers.cpp
Annotations
[user/henk/code/inspircd.git] / src / modules / m_conn_lusers.cpp
index c0be6123b469980d0506b9f02a70fab154e24489..bd444338edd9955b4f8d80f5be91e3c2c0ccec6d 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)
@@ -70,7 +70,7 @@ class ModuleConnLUSERS : public Module
                }
                else
                {
-                       Srv->CallCommandHandler("LUSERS", NULL, 0, user);
+                       ServerInstance->CallCommandHandler("LUSERS", NULL, 0, user);
                }
        }
 };