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 /src/modules/m_setname.cpp | |
parent | 8e62584e73a554f20b5d6fb470655e42e5c3d0f8 (diff) |
m_setname, m_chgname Unify notices and annoucements
Diffstat (limited to 'src/modules/m_setname.cpp')
-rw-r--r-- | src/modules/m_setname.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
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; |