Fix same logic bug in KICK handler.

This commit is contained in:
Alex Bramley 2011-08-30 23:08:10 +01:00
parent d74fd18d3d
commit 788c69aaa8
1 changed files with 6 additions and 1 deletions

View File

@ -144,7 +144,12 @@ func (conn *Conn) h_KICK(line *Line) {
ch := conn.GetChannel(line.Args[0])
n := conn.GetNick(line.Args[1])
if ch != nil && n != nil {
if _, ok := ch.Nicks[n]; ok {
ch.DelNick(n)
} else {
conn.error("irc.KICK(): nick %s is not on channel %s",
line.Nick, line.Args[0])
}
} else {
conn.error("irc.KICK(): buh? KICK from channel %s of nick %s",
line.Args[0], line.Args[1])