diff options
| author | 2025-02-24 00:28:54 +0000 | |
|---|---|---|
| committer | 2025-02-24 00:28:54 +0000 | |
| commit | 55a7690b50720a555acba2da9d5db8526fb65507 (patch) | |
| tree | d94ed068a6bfd2ae8e782e58fd5f0c6080736f00 /src/modules/m_seenicks.cpp | |
| parent | Use INSP_FORMAT in ExpandPath. (diff) | |
Add more information to the seenicks message.
Diffstat (limited to 'src/modules/m_seenicks.cpp')
| -rw-r--r-- | src/modules/m_seenicks.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/modules/m_seenicks.cpp b/src/modules/m_seenicks.cpp index e16ccdd27..4407fcab7 100644 --- a/src/modules/m_seenicks.cpp +++ b/src/modules/m_seenicks.cpp @@ -39,7 +39,8 @@ public: void OnUserPostNick(User* user, const std::string& oldnick) override { - ServerInstance->SNO.WriteToSnoMask(IS_LOCAL(user) ? 'n' : 'N', "User {} changed their nickname to {}", oldnick, user->nick); + ServerInstance->SNO.WriteToSnoMask(IS_LOCAL(user) ? 'n' : 'N', "User {}!{} ({}) changed their nickname to {}", + oldnick, user->GetRealUserHost(), user->GetAddress(), user->nick); } }; |
