From fcc7a2cf06dc678c7465d26a3a7ca995c0baeda0 Mon Sep 17 00:00:00 2001 From: Bram Matthys Date: Sat, 19 Jun 2021 17:02:45 +0200 Subject: [PATCH] Channel mode +d is local, so should be tagged as such. --- src/modules/chanmodes/delayjoin.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/modules/chanmodes/delayjoin.c b/src/modules/chanmodes/delayjoin.c index 02d6a0530..2cbb3259e 100644 --- a/src/modules/chanmodes/delayjoin.c +++ b/src/modules/chanmodes/delayjoin.c @@ -53,6 +53,7 @@ MOD_INIT() req.paracount = 0; req.is_ok = deny_all; req.flag = 'd'; + req.local = 1; CmodePostDelayed = CmodeAdd(modinfo->handle, req, &EXTMODE_POST_DELAYED); memset(&mreq, 0, sizeof(mreq));