From 5b51f606c1f0b56d18d2d8f52f4811a253a14217 Mon Sep 17 00:00:00 2001 From: Abheek Dhawan Date: Sat, 2 Apr 2022 14:59:15 -0500 Subject: [PATCH] Fix rounds requested embed title --- src/commands/rounds.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/commands/rounds.ts b/src/commands/rounds.ts index 4301e4e..e3c5f21 100644 --- a/src/commands/rounds.ts +++ b/src/commands/rounds.ts @@ -94,7 +94,7 @@ export async function execute(interaction) { const roundsListEmbed = new MessageEmbed() .setAuthor({ name: interaction.user.tag, iconURL: interaction.user.displayAvatarURL() }) - .setTitle(`Last 5 roundsList requested by ${interaction.user.tag}`) + .setTitle('Last 5 Rounds Requested') .setDescription(finalMessage) .setTimestamp();