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();