From 6afcce1f12470132daf14f9b9f8eb25ddb2e8c24 Mon Sep 17 00:00:00 2001 From: Dragon Fire Date: Tue, 5 May 2020 20:59:58 -0400 Subject: [PATCH] Fix double punctuation in airhorn/dec-talk --- commands/voice/airhorn.js | 2 +- commands/voice/dec-talk.js | 2 +- package.json | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/commands/voice/airhorn.js b/commands/voice/airhorn.js index 92ac084b..44fae5a3 100644 --- a/commands/voice/airhorn.js +++ b/commands/voice/airhorn.js @@ -30,7 +30,7 @@ module.exports = class AirhornCommand extends Command { const inGuild = msg.guild ? undefined : null; const connection = this.client.voice.connections.get(msg.guild.id); if (!connection) { - return msg.reply(`I am not in a voice channel. Use ${msg.anyUsage('join', inGuild, inGuild)} to fix that!.`); + return msg.reply(`I am not in a voice channel. Use ${msg.anyUsage('join', inGuild, inGuild)} to fix that!`); } const airhorn = sounds[Math.floor(Math.random() * sounds.length)]; connection.play(path.join(__dirname, '..', '..', 'assets', 'sounds', 'airhorn', airhorn)); diff --git a/commands/voice/dec-talk.js b/commands/voice/dec-talk.js index 7c8de23a..8f52ace7 100644 --- a/commands/voice/dec-talk.js +++ b/commands/voice/dec-talk.js @@ -49,7 +49,7 @@ module.exports = class DECTalkCommand extends Command { const inGuild = msg.guild ? undefined : null; const connection = this.client.voice.connections.get(msg.guild.id); if (!connection) { - return msg.reply(`I am not in a voice channel. Use ${msg.anyUsage('join', inGuild, inGuild)} to fix that!.`); + return msg.reply(`I am not in a voice channel. Use ${msg.anyUsage('join', inGuild, inGuild)} to fix that!`); } try { const { url } = await request diff --git a/package.json b/package.json index e7effdd1..b1a3ecc5 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "xiao", - "version": "114.5.6", + "version": "114.5.7", "description": "Your personal server companion.", "main": "Xiao.js", "scripts": {