Dont forward irc errors that are handled elsewhere

This commit is contained in:
Ken-Håvard Lieng 2017-05-29 00:42:00 +02:00
parent aa59e71745
commit 0689c74101
2 changed files with 15 additions and 2 deletions

View file

@ -13,7 +13,7 @@ import (
func createNickInUseHandler(i *irc.Client, session *Session) func(string) string {
return func(nick string) string {
newNick := nick + "_"
session.print(i.Host, "Nickname", nick, "is already in use, using", newNick, "instead")
session.printError("Nickname", nick, "is already in use, using", newNick, "instead")
return newNick
}