diff options
author | attilamolnar <attilamolnar@hush.com> | 2012-07-07 13:56:02 +0200 |
---|---|---|
committer | attilamolnar <attilamolnar@hush.com> | 2012-07-07 21:02:43 +0200 |
commit | c570f1d62bd5f371100f7ea02fedf0d7f04d41dd (patch) | |
tree | 1028d9c966d983637800a2eb66872d0a54f50e42 | |
parent | 8e62584e73a554f20b5d6fb470655e42e5c3d0f8 (diff) |
m_setname, m_chgname Unify notices and annoucements
-rw-r--r-- | src/modules/m_chgname.cpp | 4 | ||||
-rw-r--r-- | src/modules/m_setname.cpp | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/src/modules/m_chgname.cpp b/src/modules/m_chgname.cpp index 667ddd928..2ac24c5d5 100644 --- a/src/modules/m_chgname.cpp +++ b/src/modules/m_chgname.cpp @@ -52,14 +52,14 @@ class CommandChgname : public Command if (parameters[1].length() > ServerInstance->Config->Limits.MaxGecos) { - user->WriteServ("NOTICE %s :*** GECOS too long", user->nick.c_str()); + user->WriteServ("NOTICE %s :*** CHGNAME: GECOS too long", user->nick.c_str()); return CMD_FAILURE; } if (IS_LOCAL(dest)) { dest->ChangeName(parameters[1].c_str()); - 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()); + ServerInstance->SNO->WriteGlobalSno('a', "%s used CHGNAME to change %s's GECOS to '%s'", user->nick.c_str(), dest->nick.c_str(), dest->fullname.c_str()); } return CMD_SUCCESS; diff --git a/src/modules/m_setname.cpp b/src/modules/m_setname.cpp index 3b8d4d149..32c1d5dc3 100644 --- a/src/modules/m_setname.cpp +++ b/src/modules/m_setname.cpp @@ -50,7 +50,7 @@ class CommandSetname : public Command if (user->ChangeName(parameters[0].c_str())) { - ServerInstance->SNO->WriteGlobalSno('a', "%s used SETNAME to change their GECOS to %s", user->nick.c_str(), parameters[0].c_str()); + ServerInstance->SNO->WriteGlobalSno('a', "%s used SETNAME to change their GECOS to '%s'", user->nick.c_str(), parameters[0].c_str()); } return CMD_SUCCESS; |