@ -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