Add more information to the seenicks message.

This commit is contained in:
Sadie Powell 2025-02-24 00:28:54 +00:00
parent c446fa0cea
commit 55a7690b50

View File

@ -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);
}
};