Botched Fix at permission check

master
masterhc 1 year ago
parent 386cb6d79e
commit 0924069bf0

@ -72,6 +72,7 @@ class _Client extends Client
if(typeof command === 'function')
{
let c = new command(this);
this.commands.set(c.name,{
needsAdmin: c.needsAdmin?c.needsAdmin:false,
command: command,
@ -110,13 +111,9 @@ class _Client extends Client
this.freegames = new FreeGames(this);
this.strikes = new Strikes(this);
this.on('disconnect', (event) => {
// Log a message to the console
console.log(`Client disconnected: ${event.reason}`);
});
// Register an event listener for the 'reconnecting' event
this.on('reconnecting', () => {
// Log a message to the console
console.log('Client is reconnecting...');
});
this.YTFeed();
@ -199,7 +196,13 @@ class _Client extends Client
if(this.commands.get(commandName))
{
let needsAdmin = this.commands.get(commandName).needsAdmin;
let isAdmin = this.guilds.cache.get(message.guild.id).members.cache.get(message.author.id).permissions.has('ADMINISTRATOR');
let isAdmin =false;
try {
isAdmin = this.guilds.cache.get(message.guild.id).members.cache.get(message.author.id).permissions.has('ADMINISTRATOR');
} catch (error) {
console.log(error)
}
// console.log('IsAdmin: ', this.guilds.cache.get(message.guild.id).members.cache.get(message.author.id).permissions.any('ADMINISTRATOR', true))
let command = this.commands.get(commandName).command
if((needsAdmin && isAdmin) || !needsAdmin) return new command(this).run(message, args);
}

Loading…
Cancel
Save