Browse Source

fix histserv nick reservation

tags/v1.0.0-rc1
Shivaram Lingamneni 5 years ago
parent
commit
4caa362f18
1 changed files with 2 additions and 1 deletions
  1. 2
    1
      irc/nickname.go

+ 2
- 1
irc/nickname.go View File

@@ -15,9 +15,10 @@ import (
15 15
 )
16 16
 
17 17
 var (
18
+	// anything added here MUST be casefolded:
18 19
 	restrictedNicknames = map[string]bool{
19 20
 		"=scene=":  true, // used for rp commands
20
-		"HistServ": true, // TODO(slingamn) this should become a real service
21
+		"histserv": true, // TODO(slingamn) this should become a real service
21 22
 	}
22 23
 )
23 24
 

Loading…
Cancel
Save