fix histserv nick reservation

This commit is contained in:
Shivaram Lingamneni 2019-01-04 10:19:13 -05:00
parent a52d167278
commit 4caa362f18
1 changed files with 2 additions and 1 deletions

View File

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