diff options
author | June McEnroe <june@causal.agency> | 2020-02-10 20:24:07 -0500 |
---|---|---|
committer | June McEnroe <june@causal.agency> | 2020-02-10 20:24:07 -0500 |
commit | 80a79467efca8f17e440cb63009c60dd8e78cc63 (patch) | |
tree | 96c3e7e1bb3c3f1fad88976fc359307688f75f13 /command.c | |
parent | Delegate to commandPrivmsg from commandMsg (diff) | |
download | catgirl-80a79467efca8f17e440cb63009c60dd8e78cc63.tar.gz catgirl-80a79467efca8f17e440cb63009c60dd8e78cc63.zip |
Only automatically switch to expected joins
Diffstat (limited to '')
-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; } |