diff options
| author | cheqpat <[email protected]> | 2021-10-02 02:16:59 -0500 |
|---|---|---|
| committer | cheqpat <[email protected]> | 2021-10-02 02:16:59 -0500 |
| commit | 3924c8007c08fa62b71303333d3563671e3c3db1 (patch) | |
| tree | ee05aaaed3b05fe869a7f23f471836d75467e96b /src | |
| parent | b91e072e2fbc63692f42a1e9476e171ee37905bb (diff) | |
| download | muse-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.ts | 3 |
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(); } } |
