summaryrefslogtreecommitdiff
path: root/src/commands/voice
diff options
context:
space:
mode:
Diffstat (limited to 'src/commands/voice')
-rw-r--r--src/commands/voice/loop.ts2
-rw-r--r--src/commands/voice/play.ts2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/commands/voice/loop.ts b/src/commands/voice/loop.ts
index 69cc6a1..eb289a4 100644
--- a/src/commands/voice/loop.ts
+++ b/src/commands/voice/loop.ts
@@ -29,7 +29,7 @@ module.exports = class LoopVoice extends Command {
) {
return msg.reply('There isn\'t any audio playing right now. ' + emoji.random());
}
- msg.channel.send(
+ msg.say(
`${msg.guild.musicData.nowPlaying.title} added to queue. ` + emoji.random()
);
msg.guild.musicData.queue.unshift(msg.guild.musicData.nowPlaying);
diff --git a/src/commands/voice/play.ts b/src/commands/voice/play.ts
index 17bca2f..c6d37a9 100644
--- a/src/commands/voice/play.ts
+++ b/src/commands/voice/play.ts
@@ -144,7 +144,7 @@ module.exports = class PlayVoice extends Command {
.addField(`‎`, '**Song #**' + vidNameArr[3])
.addField(`‎`, '**Song #**' + vidNameArr[4])
.addField(`‎`, '**Exit selection**: ' + 'exit');
- var songEmbed = await msg.channel.send({
+ var songEmbed = await msg.say({
embed
});
var that = this;