diff options
author | C. McEnroe | 2020-02-10 20:24:07 -0500 |
---|---|---|
committer | C. McEnroe | 2020-02-10 20:24:07 -0500 |
commit | 80a79467efca8f17e440cb63009c60dd8e78cc63 (patch) | |
tree | 96c3e7e1bb3c3f1fad88976fc359307688f75f13 /command.c | |
parent | 00f0f94fc80ebecff531388e38d0fb121e3f4e74 (diff) |
Only automatically switch to expected joins
Diffstat (limited to 'command.c')
-rw-r--r-- | command.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/command.c b/command.c index cab1d26..5cb43cf 100644 --- a/command.c +++ b/command.c @@ -86,6 +86,7 @@ static void commandJoin(size_t id, char *params) { } } ircFormat("JOIN %s\r\n", (params ? params : idNames[id])); + replies.join += count; replies.topic += count; replies.names += count; } |