From 8d462ec9d58cfb00ab6155548d33376bed33c69b Mon Sep 17 00:00:00 2001 From: masterhc Date: Fri, 9 Feb 2024 12:33:39 +0000 Subject: [PATCH] Remove only up to 25 messages if the user is not full admin, clear logs on lib --- commands/admin/clearchat.js | 11 ++++++----- lib.js | 2 +- 2 files changed, 7 insertions(+), 6 deletions(-) diff --git a/commands/admin/clearchat.js b/commands/admin/clearchat.js index d16efc7..ca4f7d2 100644 --- a/commands/admin/clearchat.js +++ b/commands/admin/clearchat.js @@ -8,7 +8,7 @@ class clearchat extends Command{ super(client, { name: 'clearchat', aliases:['clear'], - description: 'Clears the channel where it was used, you can pass a message id to clear around it.' + description: 'Clears the channel where it was used, you can pass a message id to clear around it. (Max of 99 messages when admin, max of 25 when only the permission manage messages is present.' }) this.client = client; } @@ -17,7 +17,8 @@ class clearchat extends Command{ 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); + const hasPermission = this.client.guilds.cache.get(message.guild.id).members.cache.get(message.author.id).permissions.has(PermissionFlagsBits.ManageMessages); + const isAdmin = this.client.guilds.cache.get(message.guild.id).members.cache.get(message.author.id).permissions.has(PermissionFlagsBits.Administrator); if(!hasPermission) return //Verificar se está na sala bemvindo if(bemvindo(message)) @@ -33,19 +34,19 @@ class clearchat extends Command{ if(correctArgs(this.client)) { console.log("Info: !clearchat: arround argument:",args); - clear(null,false, args,this.client); + clear(isAdmin?null:25,false, args,this.client); } else { console.log("Info: !clearchat: Ammount:",args); - clear(args, false, null,this.client); + clear(isAdmin?args:(args<25?args:25), false, null,this.client); } //Quais-quer eventuais problemas são tratados na função } else { //caso normal, apenas apaga tudo. - clear(null, false,null,this.client); + clear(isAdmin?null:25, false,null,this.client); } } //verificar se é a sala bem vindo diff --git a/lib.js b/lib.js index 5627ebf..9d1f44d 100644 --- a/lib.js +++ b/lib.js @@ -314,7 +314,7 @@ class _Client extends Client { return error; }); - console.log('Lib: YTFeed:',ytChannelName, res?.author?.name, channel.name,feed?.ChannelId ,channel.id) + console.log('Lib: YTFeed: Channel:',ytChannelName,' | Discord Channel:', channel.name, ' | DCChannelId:',channel.id) var aux = res; const lastSentMessage= await channel.messages.fetch().then(res=> {