Browse Source

alias for NICKSERV SET PASSWORD

tags/v2.2.0
Shivaram Lingamneni 3 years ago
parent
commit
f193298dcd
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      irc/nickserv.go

+ 1
- 1
irc/nickserv.go View File

@@ -462,7 +462,7 @@ func nsSetHandler(server *Server, client *Client, command string, params []strin
462 462
 	var finalSettings AccountSettings
463 463
 	var err error
464 464
 	switch strings.ToLower(params[0]) {
465
-	case "pass":
465
+	case "pass", "password":
466 466
 		nsNotice(rb, client.t("To change a password, use the PASSWD command. For details, /msg NickServ HELP PASSWD"))
467 467
 		return
468 468
 	case "enforce":

Loading…
Cancel
Save