From 005b9bd69c99e3917fff6d1598386b531ccb4013 Mon Sep 17 00:00:00 2001 From: Lukas | AstroGD Date: Fri, 25 Nov 2022 19:30:57 +0100 Subject: [PATCH] Update embed color for /showsettings --- src/commands/showSettings.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/commands/showSettings.ts b/src/commands/showSettings.ts index 4903fe1..2455fb3 100644 --- a/src/commands/showSettings.ts +++ b/src/commands/showSettings.ts @@ -28,7 +28,7 @@ async function execute(interaction: ChatInputCommandInteraction): Promise const embed = getDefaultEmbed(); embed.setTitle(`Settings from guild ${interaction.guild?.name || ""} (${interaction.guildId})`); embed.setDescription(isPremium ? `${Emoji.PREMIUM} your subscription ends in ${moment(settings.isPremiumUntil).fromNow(true)}` : `Consider Premium status to get an increased blocklist`); - embed.setColor(Color.INFORMING_BLUE); + embed.setColor(isPremium ? Color.PREMIUM_ORANGE : Color.INFORMING_BLUE); embed.addFields({ name: "Premium", value: isPremium ? `${Emoji.PREMIUM} active` : `${Emoji.SWITCH_OFF} inactive`,