aboutsummaryrefslogtreecommitdiff
path: root/src/commands/info/botInfo.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/commands/info/botInfo.ts')
-rw-r--r--src/commands/info/botInfo.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/commands/info/botInfo.ts b/src/commands/info/botInfo.ts
index 25b860c..f284e0f 100644
--- a/src/commands/info/botInfo.ts
+++ b/src/commands/info/botInfo.ts
@@ -49,7 +49,7 @@ export default class BotInfoCommand extends BushCommand {
if (repoUrl.includes('.git')) repoUrl = repoUrl.substring(0, repoUrl.length - 4);
const embed = new EmbedBuilder()
.setTitle('Bot Info:')
- .addFields([
+ .addFields(
{ name: '**Uptime**', value: humanizeDuration(this.client.uptime!, 2), inline: true },
{
name: '**Memory Usage**',
@@ -79,7 +79,7 @@ export default class BotInfoCommand extends BushCommand {
inline: true
},
{ name: '**Developers**', value: developers, inline: true }
- ])
+ )
.setTimestamp()
.setColor(colors.default);
await message.util.reply({ embeds: [embed] });