diff options
Diffstat (limited to 'modules/core/cs_xop.cpp')
-rw-r--r-- | modules/core/cs_xop.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/core/cs_xop.cpp b/modules/core/cs_xop.cpp index f883d1baa..1d1ec7c84 100644 --- a/modules/core/cs_xop.cpp +++ b/modules/core/cs_xop.cpp @@ -227,7 +227,7 @@ class XOPBase : public Command return MOD_CONT; } - access = ci->GetAccess(mask); + access = ci->GetAccess(mask, 0, false); if (access) { /** @@ -307,7 +307,7 @@ class XOPBase : public Command return MOD_CONT; } - access = ci->GetAccess(mask); + access = ci->GetAccess(mask, 0, false); /* Special case: is it a number/list? Only do search if it isn't. */ if (isdigit(mask[0]) && mask.find_first_not_of("1234567890,-") == Anope::string::npos) |