summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--modules/commands/cs_access.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/commands/cs_access.cpp b/modules/commands/cs_access.cpp
index 498a772f0..508274002 100644
--- a/modules/commands/cs_access.cpp
+++ b/modules/commands/cs_access.cpp
@@ -908,7 +908,7 @@ class CSAccess : public Module
int16_t level = group->ci->GetLevel(priv);
if (level == -1)
return EVENT_ALLOW;
- else if (level == 0 && group->nc)
+ else if (level == 0 && group->nc && !group->nc->HasExt("UNCONFIRMED"))
return EVENT_ALLOW;
return EVENT_CONTINUE;
}