1
0
Fork 0
forked from External/ergo

send nickserv timeout warnings from a full pseudo-nickmask

This commit is contained in:
Shivaram Lingamneni 2019-05-21 02:48:18 -04:00
parent 8f9380d0f2
commit a59212f8dc
2 changed files with 5 additions and 4 deletions

View file

@ -269,9 +269,9 @@ func (nt *NickTimer) Touch(rb *ResponseBuffer) {
// #449
for _, mSession := range nt.client.Sessions() {
if mSession == session {
rb.Add(nil, "NickServ", "NOTICE", tnick, message)
rb.Add(nil, nsPrefix, "NOTICE", tnick, message)
} else {
mSession.Send(nil, "NickServ", "NOTICE", tnick, message)
mSession.Send(nil, nsPrefix, "NOTICE", tnick, message)
}
}
} else if shouldRename {