summaryrefslogtreecommitdiff
path: root/modules/commands/cs_mode.cpp
diff options
context:
space:
mode:
authorAdam <Adam@anope.org>2011-08-18 22:04:59 -0400
committerAdam <Adam@anope.org>2011-08-18 22:04:59 -0400
commitdb340f96d6e9741a23470840a77901c5c45b580f (patch)
treea6ae8787da9cd45ae3514ea0933b9f99d994f39c /modules/commands/cs_mode.cpp
parent0cdca534a87e70c0044480aa3a16807d881295d7 (diff)
Fixed some permission checking fail in modules that got messed up from the big commands sed
Diffstat (limited to 'modules/commands/cs_mode.cpp')
-rw-r--r--modules/commands/cs_mode.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/commands/cs_mode.cpp b/modules/commands/cs_mode.cpp
index ce0976384..f420e34e1 100644
--- a/modules/commands/cs_mode.cpp
+++ b/modules/commands/cs_mode.cpp
@@ -311,7 +311,7 @@ class CommandCSMode : public Command
if (!ci || !ci->c)
source.Reply(CHAN_X_NOT_IN_USE, ci->name.c_str());
- else if (!ci->AccessFor(u).HasPriv(CA_MODE) && !u->HasCommand("chanserv/chanserv/mode"))
+ else if (!ci->AccessFor(u).HasPriv(CA_MODE) && !u->HasCommand("chanserv/mode"))
source.Reply(ACCESS_DENIED);
else if (subcommand.equals_ci("LOCK"))
this->DoLock(source, ci, params);