From f193298dcd2fd58067429f6115bc86c88f3e1e87 Mon Sep 17 00:00:00 2001 From: Shivaram Lingamneni Date: Tue, 21 Jul 2020 01:05:13 -0400 Subject: [PATCH] alias for NICKSERV SET PASSWORD --- irc/nickserv.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/irc/nickserv.go b/irc/nickserv.go index 1eae7ed2..197a72cd 100644 --- a/irc/nickserv.go +++ b/irc/nickserv.go @@ -462,7 +462,7 @@ func nsSetHandler(server *Server, client *Client, command string, params []strin var finalSettings AccountSettings var err error switch strings.ToLower(params[0]) { - case "pass": + case "pass", "password": nsNotice(rb, client.t("To change a password, use the PASSWD command. For details, /msg NickServ HELP PASSWD")) return case "enforce":