Add music starting error

This commit is contained in:
Androz2091
2021-02-26 15:01:28 +01:00
parent 467bc12ffb
commit 0d2f9cfd2f
7 changed files with 15 additions and 12 deletions

View File

@@ -12,6 +12,9 @@ module.exports = (client, error, message, ...args) => {
case 'VideoUnavailable':
message.channel.send(`${client.emotes.error} - ${args[0].title} is not available in your country! Skipping...`);
break;
case 'MusicStarting':
message.channel.send(`The music is starting... please wait and retry!`);
break;
default:
message.channel.send(`${client.emotes.error} - Something went wrong ... Error : ${error}`);
};