aboutsummaryrefslogtreecommitdiff
path: root/bot/src/events/ClientReady.js
diff options
context:
space:
mode:
Diffstat (limited to 'bot/src/events/ClientReady.js')
-rw-r--r--bot/src/events/ClientReady.js10
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 () {