From 152a2c2fd1bea37dca27b7d58db291f6264f1522 Mon Sep 17 00:00:00 2001 From: baz Date: Sun, 11 Feb 2024 07:39:25 +0100 Subject: [PATCH] Add missing word in embed --- commands/testing/uptime.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/commands/testing/uptime.js b/commands/testing/uptime.js index 6c01342..66723ba 100644 --- a/commands/testing/uptime.js +++ b/commands/testing/uptime.js @@ -43,10 +43,11 @@ module.exports = { const currentDate = `${currentYear}/${currentMonth}/${currentDay} ${currentHour}:${currentMinute}:${currentSecond}`; const embed = new EmbedBuilder() + .setColor(0xD36918) .setTitle('Current Uptime') .setThumbnail(interaction.client.user.avatarURL()) - .setDescription(`The current uptime is **${currentUptime}**.\nThe last database backup was **${databaseBackup}**.\nThe current local time is **${currentDate}**.`) + .setDescription(`The current uptime is **${currentUptime}**.\nThe last database backup was **${databaseBackup}**ago.\nThe current local time is **${currentDate}**.`) .setTimestamp(); await interaction.reply({ embeds: [embed] });