]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/modules/m_chgident.cpp
All modules which implement simplemodes (no parameters, not a list mode) can now...
[user/henk/code/inspircd.git] / src / modules / m_chgident.cpp
index 039eb1022a847d6e25387ab030a73b7e293688bd..a658e17930f3f0ad0306710632c1098ffb957f4a 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>";
@@ -30,7 +30,8 @@ class cmd_chgident : public command_t
                        }
                
                        ServerInstance->WriteOpers("%s used CHGIDENT to change %s's ident from '%s' to '%s'", user->nick, dest->nick, dest->ident, parameters[1]);
-                       strlcpy(dest->ident, parameters[1], IDENTMAX+2);
+                       dest->ChangeIdent(parameters[1]);
+                       //strlcpy(dest->ident, parameters[1], IDENTMAX+2);
                }
                else
                {
@@ -48,7 +49,7 @@ class ModuleChgIdent : public Module
 public:
        ModuleChgIdent(InspIRCd* Me) : Module::Module(Me)
        {
-               mycommand = new cmd_chgident();
+               mycommand = new cmd_chgident(ServerInstance);
                ServerInstance->AddCommand(mycommand);
        }