From 45c58f36fd4cfd1a11d525d2eb460618f8cc9950 Mon Sep 17 00:00:00 2001 From: AlexProgrammerDE <40795980+AlexProgrammerDE@users.noreply.github.com> Date: Tue, 2 Jul 2024 21:38:19 +0200 Subject: [PATCH] Also display current version --- modules/checks/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/checks/index.ts b/modules/checks/index.ts index 894eb78..b435264 100644 --- a/modules/checks/index.ts +++ b/modules/checks/index.ts @@ -138,7 +138,7 @@ async function respondToText(message: Message, text: string, footer: string) { embeds: [new EmbedBuilder() .setTitle('Outdated SkinsRestorer Version!') .setColor('#FF0000') - .setDescription(`The SkinsRestorer version you're using is outdated! Please update to the latest version: ${latestVersion}`) + .setDescription(`The SkinsRestorer version you're using (${version}) is outdated! Please update to the latest version: ${latestVersion}`) .setFooter({text: footer})] }) }