]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/modules/m_chgname.cpp
Move the <disabled> tag out of the core to a new module.
[user/henk/code/inspircd.git] / src / modules / m_chgname.cpp
index fa35732b86596e57f7dd74bcf26f903c34668a84..aedd75d945e40e43164d03a6dd84951cfe4a1b12 100644 (file)
@@ -29,7 +29,7 @@ class CommandChgname : public Command
        {
                allow_empty_last_param = false;
                flags_needed = 'o';
-               syntax = "<nick> <newname>";
+               syntax = "<nick> <new real name>";
                TRANSLATE2(TR_NICK, TR_TEXT);
        }
 
@@ -49,7 +49,7 @@ class CommandChgname : public Command
                        return CMD_FAILURE;
                }
 
-               if (parameters[1].length() > ServerInstance->Config->Limits.MaxGecos)
+               if (parameters[1].length() > ServerInstance->Config->Limits.MaxReal)
                {
                        user->WriteNotice("*** CHGNAME: Real name is too long");
                        return CMD_FAILURE;
@@ -57,8 +57,8 @@ class CommandChgname : public Command
 
                if (IS_LOCAL(dest))
                {
-                       dest->ChangeName(parameters[1]);
-                       ServerInstance->SNO->WriteGlobalSno('a', "%s used CHGNAME to change %s's real name to '%s'", user->nick.c_str(), dest->nick.c_str(), dest->fullname.c_str());
+                       dest->ChangeRealName(parameters[1]);
+                       ServerInstance->SNO->WriteGlobalSno('a', "%s used CHGNAME to change %s's real name to '%s'", user->nick.c_str(), dest->nick.c_str(), dest->GetRealName().c_str());
                }
 
                return CMD_SUCCESS;