From 700a585b1bb38a9dc0ac3e749083250d405488f8 Mon Sep 17 00:00:00 2001 From: Adam Date: Sun, 28 Aug 2011 15:46:15 -0400 Subject: Allow modules to add their own channel levels --- modules/commands/cs_enforce.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'modules/commands/cs_enforce.cpp') diff --git a/modules/commands/cs_enforce.cpp b/modules/commands/cs_enforce.cpp index 78a2a9950..f64c7776d 100644 --- a/modules/commands/cs_enforce.cpp +++ b/modules/commands/cs_enforce.cpp @@ -129,7 +129,7 @@ class CommandCSEnforce : public Command source.Reply(CHAN_X_NOT_IN_USE, params[0].c_str()); else if (!c->ci) source.Reply(CHAN_X_NOT_REGISTERED, c->name.c_str()); - else if (!c->ci->AccessFor(u).HasPriv(CA_AKICK)) + else if (!c->ci->AccessFor(u).HasPriv("AKICK")) source.Reply(ACCESS_DENIED); else { -- cgit