aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorcheqpat <[email protected]>2021-10-02 02:16:59 -0500
committercheqpat <[email protected]>2021-10-02 02:16:59 -0500
commit3924c8007c08fa62b71303333d3563671e3c3db1 (patch)
treeee05aaaed3b05fe869a7f23f471836d75467e96b /src
parentb91e072e2fbc63692f42a1e9476e171ee37905bb (diff)
downloadmuse-3924c8007c08fa62b71303333d3563671e3c3db1.tar.xz
muse-3924c8007c08fa62b71303333d3563671e3c3db1.zip
Always autoplay rather than alerting that it is paused
Diffstat (limited to 'src')
-rw-r--r--src/commands/play.ts3
1 files changed, 2 insertions, 1 deletions
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();
}
}