This commit is contained in:
blackbeard420 2020-01-06 20:04:11 -05:00
parent ee02778ce4
commit ccea231479

2
irc.go
View File

@ -128,7 +128,7 @@ func (c *Connection) updateNicks(channel string, names []string) {
for _, i := range names {
if !hasNick(i, c.userList[channel]) {
c.userList[channel] = append(c.userList[channel], i)
log.Printf("added nick: %s to channel %s\n", channel, i)
log.Printf("added nick: %s to channel %s\n", i, channel)
}
}
}