fix role verification

This commit is contained in:
SowinskiBraeden committed 2024-01-23 18:26:10 -08:00
1 parent 358f1f560d
commit 4435f0b2df
1 file changed
+1 -1
+1 -1
View File
@@ -220,7 +220,7 @@ class LinesPoliceCadBot extends Client {
if (allowedRoles.length == 0) return true; // If we are in this function, and there are no roles to compare to, return true as if we had the role anyway if (allowedRoles.length == 0) return true; // If we are in this function, and there are no roles to compare to, return true as if we had the role anyway
for (let i = 0; i < allowedRoles.length; i++) { for (let i = 0; i < allowedRoles.length; i++) {
if (rolesCache.some(role => role.id == allowedRoles[i])) return true; // they have at least one matching role if (rolesCache.includes(allowedRoles[i])) return true; // they have at least one matching role
else continue; else continue;
} }