server: temporarily making some commands as admin-only

This commit is contained in:
liushuyu 2024-02-27 16:41:27 -07:00
parent fde0b14b58
commit c5bf06fafe
No known key found for this signature in database
GPG key ID: 23D1CE4534419437

View file

@ -196,7 +196,9 @@ client.on('messageCreate', async (message) => {
logger.error(`Unable to get the roles for ${message.author}`);
return;
}
if (cachedModule && cachedModule.roles && !findArray(authorRoles, cachedModule.roles)) {
const isAllowed = (cmd === 'case' && findArray(authorRoles, ['Admins', 'Moderators', 'Developer'])) ||
(cachedModule?.roles && findArray(authorRoles, cachedModule.roles));
if (!isAllowed) {
await state.logChannel?.send(`${message.author.toString()} attempted to use admin command: ${message.content}`);
logger.info(`${message.author.username} ${message.author} attempted to use admin command: ${message.content}`);
return;