diff --git a/irc/handlers.go b/irc/handlers.go index ecc053ca..38a88bbf 100644 --- a/irc/handlers.go +++ b/irc/handlers.go @@ -3319,9 +3319,9 @@ func (client *Client) rplWhoReply(channel *Channel, target *Client, rb *Response } params = append(params, fAccount) } - if fields.Has('o') { // target's channel power level - //TODO: implement this - params = append(params, "0") + if fields.Has('o') { + // channel oplevel, not implemented + params = append(params, "*") } if fields.Has('r') { params = append(params, details.realname)