diff options
| author | Andrew Lee <andrew@alee14.me> | 2025-03-30 17:39:45 -0400 |
|---|---|---|
| committer | Andrew Lee <andrew@alee14.me> | 2025-03-30 17:39:45 -0400 |
| commit | 48d906bfd8fade21c13e73ea703ecb699a19c533 (patch) | |
| tree | 8551fd01f1cc146d1f2d5d3afaa75b257e833060 /bot/src/events/ClientReady.js | |
| parent | d37cc8c56cbf8c9ffe7023c671abe0d579ea875d (diff) | |
| download | AleeBot-48d906bfd8fade21c13e73ea703ecb699a19c533.tar.gz AleeBot-48d906bfd8fade21c13e73ea703ecb699a19c533.tar.bz2 AleeBot-48d906bfd8fade21c13e73ea703ecb699a19c533.zip | |
More eslint styling
Diffstat (limited to 'bot/src/events/ClientReady.js')
| -rw-r--r-- | bot/src/events/ClientReady.js | 10 |
1 files changed, 5 insertions, 5 deletions
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 () { |
