From 3924c8007c08fa62b71303333d3563671e3c3db1 Mon Sep 17 00:00:00 2001 From: cheqpat Date: Sat, 2 Oct 2021 02:16:59 -0500 Subject: [PATCH] Always autoplay rather than alerting that it is paused --- src/commands/play.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/commands/play.ts b/src/commands/play.ts index 0dc1ce1..a0e5bb6 100644 --- a/src/commands/play.ts +++ b/src/commands/play.ts @@ -161,7 +161,8 @@ export default class implements Command { await player.connect(targetVoiceChannel); if (player.status === STATUS.PAUSED && queueOldSize) { - await msg.channel.send('joined, but I\'m paused, use a lonely `-p` to resume playback'); + // Resume playing from queue after being paused + await player.play(); } }