aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
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();
}
}