From 776583a665fdc1b98b66266f6649865d27337a28 Mon Sep 17 00:00:00 2001 From: Adam Date: Tue, 9 Aug 2011 01:55:34 -0400 Subject: Simiplied a bit of the access system --- 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 395926a46..267a0a850 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->HasPriv(u, CA_AKICK)) + else if (!c->ci->AccessFor(u).HasPriv(CA_AKICK)) source.Reply(ACCESS_DENIED); else { -- cgit