diff --git a/irc/reply.go b/irc/reply.go index 2c11bea2..b4304bfb 100644 --- a/irc/reply.go +++ b/irc/reply.go @@ -81,7 +81,7 @@ func (target *Client) MultilineReply(names []string, code NumericCode, format st for to < len(names) { if (from < (to - 1)) && tooLong(names[from:to]) { target.NumericReply(code, format, argsAndNames(names[from:to-1])...) - from, to = to-1, to + from = to - 1 } else { to += 1 }