📝 Correction

This commit is contained in:
Zerio
2020-11-15 19:52:07 +01:00
committed by GitHub
parent 467ea5b635
commit f0cd7ddb82

View File

@@ -8,10 +8,10 @@ module.exports = (client, error, message) => {
message.channel.send(`${client.emotes.error} - You are not connected in any voice channel !`); message.channel.send(`${client.emotes.error} - You are not connected in any voice channel !`);
break; break;
case 'UnableToJoin': case 'UnableToJoin':
message.channel.send(`${client.emotes.error} - I am not able to join your voice channel, please check my permissions ! `); message.channel.send(`${client.emotes.error} - I am not able to join your voice channel, please check my permissions !`);
break; break;
default: default:
message.channel.send(`${client.emotes.error} - Something went wrong ... Error : ${error}`); message.channel.send(`${client.emotes.error} - Something went wrong ... Error : ${error}`);
}; };
}; };