From 6b0eadb7dbb5ef559980863c9c19edfebd99432b Mon Sep 17 00:00:00 2001 From: Dragon Fire Date: Tue, 7 Jul 2020 17:12:18 -0400 Subject: [PATCH] Fix lint --- commands/voice/dec-talk.js | 1 - commands/voice/soundboard.js | 1 - 2 files changed, 2 deletions(-) diff --git a/commands/voice/dec-talk.js b/commands/voice/dec-talk.js index e273a431..967bfcc7 100644 --- a/commands/voice/dec-talk.js +++ b/commands/voice/dec-talk.js @@ -46,7 +46,6 @@ module.exports = class DECTalkCommand extends Command { } async run(msg, { text }) { - const inGuild = msg.guild ? undefined : null; const connection = this.client.voice.connections.get(msg.guild.id); if (!connection) { const usage = this.client.registry.commands.get('join').usage(); diff --git a/commands/voice/soundboard.js b/commands/voice/soundboard.js index cdb8f031..4d113782 100644 --- a/commands/voice/soundboard.js +++ b/commands/voice/soundboard.js @@ -63,7 +63,6 @@ module.exports = class SoundboardCommand extends Command { } async run(msg, { sound }) { - const inGuild = msg.guild ? undefined : null; const connection = this.client.voice.connections.get(msg.guild.id); if (!connection) { const usage = this.client.registry.commands.get('join').usage();