summaryrefslogtreecommitdiff
path: root/src/modules
diff options
context:
space:
mode:
authorw00t <w00t@e03df62e-2008-0410-955e-edbf42e46eb7>2008-09-29 10:07:46 +0000
committerw00t <w00t@e03df62e-2008-0410-955e-edbf42e46eb7>2008-09-29 10:07:46 +0000
commitd28ea800260665af77bedf267f83c8518117a114 (patch)
tree94030e871ec216ed96f446df7da5ad4fe722b632 /src/modules
parentfee65af28e1db5cc431bda2dc643952b88461a74 (diff)
Fix inverted logic in restrictchans that caused it to not play nice with permchannels.
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@10609 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/modules')
-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;