diff options
| author | 2018-07-30 18:50:34 +0100 | |
|---|---|---|
| committer | 2018-07-30 18:50:34 +0100 | |
| commit | abbf70b2a35edaf17631e43027828011296924ad (patch) | |
| tree | 62df618ad367cad9324cb1e91182790c22c9b5f8 /src/modules/m_chgname.cpp | |
| parent | Replace most usages of "name" with "real" or "real name". (diff) | |
Rename User::fullname to realname and make it private.
Diffstat (limited to 'src/modules/m_chgname.cpp')
| -rw-r--r-- | src/modules/m_chgname.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/m_chgname.cpp b/src/modules/m_chgname.cpp index f6ab800be..aedd75d94 100644 --- a/src/modules/m_chgname.cpp +++ b/src/modules/m_chgname.cpp @@ -58,7 +58,7 @@ class CommandChgname : public Command if (IS_LOCAL(dest)) { 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->fullname.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->GetRealName().c_str()); } return CMD_SUCCESS; |
