From 48d906bfd8fade21c13e73ea703ecb699a19c533 Mon Sep 17 00:00:00 2001 From: Andrew Lee Date: Sun, 30 Mar 2025 17:39:45 -0400 Subject: More eslint styling --- bot/src/events/ClientReady.js | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'bot/src/events/ClientReady.js') diff --git a/bot/src/events/ClientReady.js b/bot/src/events/ClientReady.js index b97af1f..194159b 100644 --- a/bot/src/events/ClientReady.js +++ b/bot/src/events/ClientReady.js @@ -52,18 +52,18 @@ export default { if (process.env.NODE_ENV !== 'development') { const readyEmbed = new EmbedBuilder() - .setAuthor({name: 'AleeBot Status', iconURL: client.user.avatarURL()}) + .setAuthor({ name: 'AleeBot Status', iconURL: client.user.avatarURL() }) .setDescription('AleeBot has started') .addFields( - {name: 'Version', value: `${abVersion}`, inline: true}, - {name: 'Node.JS Version', value: `${process.versions.node}`, inline: true}, - {name: 'Discord.JS Version', value: `${version}`, inline: true} + { name: 'Version', value: `${abVersion}`, inline: true }, + { name: 'Node.JS Version', value: `${process.versions.node}`, inline: true }, + { name: 'Discord.JS Version', value: `${version}`, inline: true } ) .setColor(abEmbedColour); let statusChannel = client.channels.cache.get(process.env.STATUS_CHANNEL_ID); if (!statusChannel) return console.error('The status channel does not exist! Skipping.'); - await statusChannel.send({embeds: [readyEmbed]}); + await statusChannel.send({ embeds: [readyEmbed] }); } setInterval(function () { -- cgit v1.2.3