Always autoplay rather than alerting that it is paused

This commit is contained in:
cheqpat 2021-10-02 02:16:59 -05:00
parent b91e072e2f
commit 3924c8007c
No known key found for this signature in database
GPG key ID: 94B34F26E36B1D9F

View file

@ -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();
}
}