From 729d4b377c24bfcf33b17f6da8a6f659ed9bc179 Mon Sep 17 00:00:00 2001 From: Shivaram Lingamneni Date: Sun, 17 Feb 2019 22:47:41 -0500 Subject: [PATCH] revised string from discussion on ticket --- irc/idletimer.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/irc/idletimer.go b/irc/idletimer.go index aa43a884..e676cf16 100644 --- a/irc/idletimer.go +++ b/irc/idletimer.go @@ -258,7 +258,7 @@ func (nt *NickTimer) sendWarning() { // 1. sent with prefix `nickserv` // 2. contains the string "identify" // 3. contains at least one of several other magic strings ("authenticate" works) - baseNotice := "Nickname is reserved; you must change it or authenticate (identify) to NickServ within %v" + baseNotice := "This nickname is reserved. Please login within %v (using $b/msg NickServ IDENTIFY $b or SASL)" nt.client.Send(nil, "NickServ", "NOTICE", nt.client.Nick(), fmt.Sprintf(nt.client.t(baseNotice), nt.timeout)) }