]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/modules/m_chgident.cpp
Speaking of forgetting things, someone forgot to change the name of the function
[user/henk/code/inspircd.git] / src / modules / m_chgident.cpp
index 039eb1022a847d6e25387ab030a73b7e293688bd..e5b19bfca804b6da0fe4435a577a500616df6429 100644 (file)
@@ -1,17 +1,17 @@
 #include <string>
 #include "users.h"
 #include "modules.h"
-#include "helperfuncs.h"
+
 #include "inspircd.h"
 
 /* $ModDesc: Provides support for the CHGIDENT command */
 
-extern InspIRCd* ServerInstance;
+
 
 class cmd_chgident : public command_t
 {
  public:
      cmd_chgident() : command_t("CHGIDENT", 'o', 2)
cmd_chgident (InspIRCd* Instance) : command_t(Instance,"CHGIDENT", 'o', 2)
        {
                this->source = "m_chgident.so";
                syntax = "<nick> <newident>";
@@ -48,7 +48,7 @@ class ModuleChgIdent : public Module
 public:
        ModuleChgIdent(InspIRCd* Me) : Module::Module(Me)
        {
-               mycommand = new cmd_chgident();
+               mycommand = new cmd_chgident(ServerInstance);
                ServerInstance->AddCommand(mycommand);
        }