summaryrefslogtreecommitdiff
path: root/src/modules/m_restrictchans.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/modules/m_restrictchans.cpp')
-rw-r--r--src/modules/m_restrictchans.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/modules/m_restrictchans.cpp b/src/modules/m_restrictchans.cpp
index c7b4bee96..02d7d6a3a 100644
--- a/src/modules/m_restrictchans.cpp
+++ b/src/modules/m_restrictchans.cpp
@@ -57,11 +57,11 @@ class ModuleRestrictChans : public Module
if (!IS_LOCAL(user))
return 0;
- // user is not an oper and its not in the allow list
- if ((!IS_OPER(user)) && (allowchans.find(x) == allowchans.end()))
+ // channel does not yet exist (record is null, about to be created IF we were to allow it)
+ if (!chan)
{
- // channel does not yet exist (record is null, about to be created IF we were to allow it)
- if (!chan)
+ // user is not an oper and its not in the allow list
+ if ((!IS_OPER(user)) && (allowchans.find(x) == allowchans.end()))
{
user->WriteNumeric(ERR_BANNEDFROMCHAN, "%s %s :Only IRC operators may create new channels",user->nick.c_str(),cname);
return 1;