From 736f384457fc46027909202c1b8ba6e3e781e37f Mon Sep 17 00:00:00 2001 From: masterhc Date: Fri, 9 Feb 2024 01:19:07 +0000 Subject: [PATCH] Clearchat check for the Manage Messages permission isntead of full on administration --- commands/admin/clearchat.js | 6 +++--- lib.js | 6 ++++-- 2 files changed, 7 insertions(+), 5 deletions(-) diff --git a/commands/admin/clearchat.js b/commands/admin/clearchat.js index 094b53b..d16efc7 100644 --- a/commands/admin/clearchat.js +++ b/commands/admin/clearchat.js @@ -1,5 +1,5 @@ -const {Command, ErrorMessage, ErrorType, Client, Message} = require('../../lib.js') +const {Command, ErrorMessage, ErrorType, Client, Message, PermissionFlagsBits, PermissionsBitField} = require('../../lib.js') @@ -7,7 +7,6 @@ class clearchat extends Command{ constructor(client){ super(client, { name: 'clearchat', - needsAdmin: true, aliases:['clear'], description: 'Clears the channel where it was used, you can pass a message id to clear around it.' }) @@ -15,10 +14,11 @@ class clearchat extends Command{ } async run(message, args) { - //verificar admin const Author = message.author.username; const channel = message.channel.name; console.log('ClearChat:',' - ', Author, 'on:', channel, args?args:'No limit' ) + var hasPermission = this.client.guilds.cache.get(message.guild.id).members.cache.get(message.author.id).permissions.has(PermissionFlagsBits.ManageMessages); + if(!hasPermission) return //Verificar se está na sala bemvindo if(bemvindo(message)) { diff --git a/lib.js b/lib.js index 78aabdc..edb090e 100644 --- a/lib.js +++ b/lib.js @@ -1,6 +1,6 @@ const path = require('path'); const find = require('findit'); -const {Client,ClientOptions,GatewayIntentBits,Message, Partials, ActivityType,EmbedBuilder, ActionRowBuilder, ButtonBuilder, ButtonStyle} = require('discord.js') +const {Client,ClientOptions,GatewayIntentBits,Message, Partials, ActivityType,EmbedBuilder, ActionRowBuilder, ButtonBuilder, ButtonStyle, PermissionsBitField, PermissionFlagsBits } = require('discord.js') const roleRulesM = require('./models/autoRoleRule'); const feedM = require('./models/feeds'); const xmlparser = require('xml-js') @@ -16,6 +16,8 @@ module.exports.ActionRowBuilder = ActionRowBuilder; module.exports.ButtonBuilder = ButtonBuilder; module.exports.ButtonStyle = ButtonStyle; module.exports.Message = Message; +module.exports.PermissionsBitField = PermissionsBitField; +module.exports.PermissionFlagsBits = PermissionFlagsBits; //@ts-check class CommandOptions @@ -198,7 +200,7 @@ class _Client extends Client let isAdmin =false; try { - isAdmin = this.guilds.cache.get(message.guild.id).members.cache.get(message.author.id).permissions.has('ADMINISTRATOR'); + isAdmin = this.guilds.cache.get(message.guild.id).members.cache.get(message.author.id).permissions.has(PermissionFlagsBits.Administrator); } catch (error) { console.log('Lib: Command: Permission Verification: Failed')