about summary refs log tree commit diff
path: root/command.c
diff options
context:
space:
mode:
authorJune McEnroe <june@causal.agency>2020-02-10 20:24:07 -0500
committerJune McEnroe <june@causal.agency>2020-02-10 20:24:07 -0500
commit80a79467efca8f17e440cb63009c60dd8e78cc63 (patch)
tree96c3e7e1bb3c3f1fad88976fc359307688f75f13 /command.c
parentDelegate to commandPrivmsg from commandMsg (diff)
downloadcatgirl-80a79467efca8f17e440cb63009c60dd8e78cc63.tar.gz
catgirl-80a79467efca8f17e440cb63009c60dd8e78cc63.zip
Only automatically switch to expected joins
Diffstat (limited to 'command.c')
-rw-r--r--command.c1
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;
 }