diff --git a/lib.js b/lib.js index f2a88c1..bd98e20 100644 --- a/lib.js +++ b/lib.js @@ -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); }