From dcfbecb5398613891803cdd34f48e0cca76cb060 Mon Sep 17 00:00:00 2001 From: Dragon Nest <64114013+H077y@users.noreply.github.com> Date: Wed, 15 Mar 2023 20:18:43 +0000 Subject: [PATCH 1/4] Fixed quote block not extending full description Changed > to >>> to fit full description. --- src/commands/page.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/commands/page.ts b/src/commands/page.ts index 1325777..6d7fa7f 100644 --- a/src/commands/page.ts +++ b/src/commands/page.ts @@ -84,7 +84,7 @@ export class PageCommand { const embedDesc = [`🍰 Age: ${apiData.age}`]; if (apiData.description && apiData.description.length > 0) - embedDesc.push(`> ${apiData.description}`); + embedDesc.push(`>>> ${apiData.description}`); embed.setDescription(embedDesc.join("\n")); From 2a0526fd0c87ce914703b4e00d74c1e2c964ad8e Mon Sep 17 00:00:00 2001 From: Dragon Nest <64114013+H077y@users.noreply.github.com> Date: Wed, 15 Mar 2023 20:20:58 +0000 Subject: [PATCH 2/4] Changed emojis They now look closer to the ones on pronouns page than before. --- src/utils/PronounsAPI.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/utils/PronounsAPI.ts b/src/utils/PronounsAPI.ts index 11650c2..9a09632 100644 --- a/src/utils/PronounsAPI.ts +++ b/src/utils/PronounsAPI.ts @@ -64,9 +64,9 @@ export const getEmoji = (type: Opinion) => { case 'yes': return '💖'; case 'no': - return '❌'; + return '👎'; case 'close': - return '<:close_friends:1075426436174848011>'; + return '👥'; case 'meh': return '👍'; case 'jokingly': From 5965938730697285ac479e7175188bd80509d914 Mon Sep 17 00:00:00 2001 From: Dragon Nest <64114013+H077y@users.noreply.github.com> Date: Wed, 15 Mar 2023 20:25:58 +0000 Subject: [PATCH 3/4] Added emojis in footer Clarifies what each emoji means. --- src/commands/page.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/commands/page.ts b/src/commands/page.ts index 6d7fa7f..2f22ded 100644 --- a/src/commands/page.ts +++ b/src/commands/page.ts @@ -100,6 +100,8 @@ export class PageCommand { inline: true } ]); + + embed.setFooter({ text: '💖 Yes • 😜 Jokingly • 👥 Only if we\'re close • 👍 Okay • 👎 Nope • ❔ Custom' }) const button = new ButtonBuilder() .setLabel('View words') From dfd26108ea03a4fa43dac650adf43ffb64e2f32c Mon Sep 17 00:00:00 2001 From: Dragon Nest <64114013+H077y@users.noreply.github.com> Date: Wed, 15 Mar 2023 20:26:55 +0000 Subject: [PATCH 4/4] Forgor to add it to words too Added emojis to footer in the words section as well --- src/commands/page.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/commands/page.ts b/src/commands/page.ts index 2f22ded..dac93ea 100644 --- a/src/commands/page.ts +++ b/src/commands/page.ts @@ -151,6 +151,7 @@ export class PageCommand { const embed = new EmbedBuilder().setColor('#9beba7'); embed.setTitle(`Words to use and what not to use`); embed.setFields(fields); + embed.setFooter({ text: '💖 Yes • 😜 Jokingly • 👥 Only if we\'re close • 👍 Okay • 👎 Nope • ❔ Custom' }) await interaction.editReply({ embeds: [embed] });