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 /handle.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-- | handle.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/handle.c b/handle.c index fd2a67f..0db7fd9 100644 --- a/handle.c +++ b/handle.c @@ -164,6 +164,7 @@ static void handleReplyWelcome(struct Message *msg) { if (*ch == ',') count++; } ircFormat("JOIN %s\r\n", self.join); + replies.join += count; replies.topic += count; replies.names += count; } @@ -211,7 +212,10 @@ static void handleJoin(struct Message *msg) { } idColors[id] = hash(msg->params[0]); completeTouch(None, msg->params[0], idColors[id]); - uiShowID(id); + if (replies.join) { + uiShowID(id); + replies.join--; + } } completeTouch(id, msg->nick, hash(msg->user)); if (msg->params[2] && !strcasecmp(msg->params[2], msg->nick)) { |