From fca48fd05dadc3c77da32a31ed9e5148d5f0ac27 Mon Sep 17 00:00:00 2001 From: "C. McEnroe" Date: Sun, 17 Oct 2021 11:55:43 -0400 Subject: Increment replies for list modes with /mode Otherwise only /ban can be used to list bans and /mode b or /mode +b won't show the listing. --- command.c | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/command.c b/command.c index 5c97ef5..335c396 100644 --- a/command.c +++ b/command.c @@ -243,6 +243,12 @@ static void commandMode(uint id, char *params) { } } else { if (params) { + if (!params[1] || (params[0] == '+' && !params[2])) { + char m = (params[0] == '+' ? params[1] : params[0]); + if (m == 'b') replies[ReplyBan]++; + if (m == network.excepts) replies[ReplyExcepts]++; + if (m == network.invex) replies[ReplyInvex]++; + } ircFormat("MODE %s %s\r\n", idNames[id], params); } else { ircFormat("MODE %s\r\n", idNames[id]); -- cgit 1.4.1