fixed formatting

This commit is contained in:
JandereDev 2022-05-27 20:12:50 +02:00
parent dfce480ec0
commit 4eeaca64d7
Signed by: Lea
GPG key ID: 5D5E18ACB990F57A

View file

@ -257,18 +257,18 @@ client.on('guildCreate', async server => {
'A note to this server\'s administrators: When using the bridge, please make sure to also provide your members ' + 'A note to this server\'s administrators: When using the bridge, please make sure to also provide your members ' +
'with a link to AutoMod\'s privacy policy in an accessible place like your rules channel.'; 'with a link to AutoMod\'s privacy policy in an accessible place like your rules channel.';
if (channel.permissionsFor(me).has('EMBED_LINKS')) { if (channel.permissionsFor(me).has('EMBED_LINKS')) {
await channel.send({ await channel.send({
embeds: [ embeds: [
new MessageEmbed() new MessageEmbed()
.setDescription(message) .setDescription(message)
.setColor('#ff6e6d') .setColor('#ff6e6d')
] ]
}); });
} }
else { else {
await channel.send(message); await channel.send(message);
} }
} catch(e) { } catch(e) {
console.error(e); console.error(e);
} }