Remove only up to 25 messages if the user is not full admin, clear logs on lib

master
masterhc 1 year ago
parent 7416b1811f
commit 8d462ec9d5

@ -8,7 +8,7 @@ class clearchat extends Command{
super(client, { super(client, {
name: 'clearchat', name: 'clearchat',
aliases:['clear'], 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; this.client = client;
} }
@ -17,7 +17,8 @@ class clearchat extends Command{
const Author = message.author.username; const Author = message.author.username;
const channel = message.channel.name; const channel = message.channel.name;
console.log('ClearChat:',' - ', Author, 'on:', channel, args?args:'No limit' ) 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 if(!hasPermission) return
//Verificar se está na sala bemvindo //Verificar se está na sala bemvindo
if(bemvindo(message)) if(bemvindo(message))
@ -33,19 +34,19 @@ class clearchat extends Command{
if(correctArgs(this.client)) if(correctArgs(this.client))
{ {
console.log("Info: !clearchat: arround argument:",args); console.log("Info: !clearchat: arround argument:",args);
clear(null,false, args,this.client); clear(isAdmin?null:25,false, args,this.client);
} }
else else
{ {
console.log("Info: !clearchat: Ammount:",args); 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 //Quais-quer eventuais problemas são tratados na função
} }
else else
{ {
//caso normal, apenas apaga tudo. //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 //verificar se é a sala bem vindo

@ -314,7 +314,7 @@ class _Client extends Client
{ {
return error; 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; var aux = res;
const lastSentMessage= await channel.messages.fetch().then(res=> const lastSentMessage= await channel.messages.fetch().then(res=>
{ {

Loading…
Cancel
Save