diff options
author | Sadie Powell <sadie@witchery.services> | 2021-02-18 23:59:28 +0000 |
---|---|---|
committer | Sadie Powell <sadie@witchery.services> | 2021-02-18 23:59:28 +0000 |
commit | c68b81eac87314fb0da83a83fed8679e521cf8eb (patch) | |
tree | 1200203b739e52f652a9ba1170e4813270780edb /modules/commands/cs_access.cpp | |
parent | 8b2c1548ab46401f96d4e2e0f8258664e21744fb (diff) | |
parent | 4d271e021042f0b2708abaff5ff3cfb1504a5cc0 (diff) |
Merge branch '2.0' into 2.1.
Diffstat (limited to 'modules/commands/cs_access.cpp')
-rw-r--r-- | modules/commands/cs_access.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/commands/cs_access.cpp b/modules/commands/cs_access.cpp index fcbe5024b..508274002 100644 --- a/modules/commands/cs_access.cpp +++ b/modules/commands/cs_access.cpp @@ -1,6 +1,6 @@ /* ChanServ core functions * - * (C) 2003-2020 Anope Team + * (C) 2003-2021 Anope Team * Contact us at team@anope.org * * Please read COPYING and README for further details. @@ -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; } |