This commit is contained in:
clem1 2014-04-06 23:24:57 +02:00
parent 94cee489f3
commit 1a9907bfe4
1 changed files with 1 additions and 1 deletions

View File

@ -106,7 +106,7 @@ func (conn *Conn) h_433(line *Line) {
for time.Sleep(retry); conn.Me.Nick != old; time.Sleep(retry) { for time.Sleep(retry); conn.Me.Nick != old; time.Sleep(retry) {
conn.Nick(old) conn.Nick(old)
} }
}(conn.Me.Nick) }(line.Args[1])
// if this is happening before we're properly connected (i.e. the nick // if this is happening before we're properly connected (i.e. the nick
// we sent in the initial NICK command is in use) we will not receive // we sent in the initial NICK command is in use) we will not receive
// a NICK message to confirm our change of nick, so ReNick here... // a NICK message to confirm our change of nick, so ReNick here...