From d28ea800260665af77bedf267f83c8518117a114 Mon Sep 17 00:00:00 2001 From: w00t Date: Mon, 29 Sep 2008 10:07:46 +0000 Subject: [PATCH] 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 --- src/modules/m_restrictchans.cpp | 8 ++++---- 1 file 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; -- 2.39.2