diff options
| author | 2006-09-09 15:37:31 +0000 | |
|---|---|---|
| committer | 2006-09-09 15:37:31 +0000 | |
| commit | ae24657214e69d6f77407c5cfaa0095da7b6d7c1 (patch) | |
| tree | def075fa78e3144a88fc7ae953fecd2fb014ce00 /src/modules/m_sethost.cpp | |
| parent | Tidier string building (diff) | |
Ensure that these output the sane value thats actually set, not the possibly insane one you TRIED to set
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@5186 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/modules/m_sethost.cpp')
| -rw-r--r-- | src/modules/m_sethost.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/m_sethost.cpp b/src/modules/m_sethost.cpp index 296c0788a..fb3d68529 100644 --- a/src/modules/m_sethost.cpp +++ b/src/modules/m_sethost.cpp @@ -58,7 +58,7 @@ class cmd_sethost : public command_t } if (user->ChangeDisplayedHost(parameters[0])) { - ServerInstance->WriteOpers(std::string(user->nick)+" used SETHOST to change their displayed host to "+std::string(parameters[0])); + ServerInstance->WriteOpers(std::string(user->nick)+" used SETHOST to change their displayed host to "+user->dhost); return CMD_SUCCESS; } |
