From 7b4d735f29313d7ae15c3586ef7384dd6f09c824 Mon Sep 17 00:00:00 2001 From: Blocks <51055767+Blocksnmore@users.noreply.github.com> Date: Sat, 27 Jul 2024 23:02:46 -0500 Subject: [PATCH] Fix help embed --- commands/misc/help.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/commands/misc/help.ts b/commands/misc/help.ts index b7960f0..077ccfe 100644 --- a/commands/misc/help.ts +++ b/commands/misc/help.ts @@ -215,7 +215,7 @@ export default class Help extends Command { description += `\n - Shuffleplay` } - description = description.split("\n").sort().join("\n"); + description = ` - ${description}`.split("\n").sort().join("\n"); await message.edit({ components: [], @@ -228,7 +228,7 @@ export default class Help extends Command { title: `${format(choice)} Commands`, description: categorydata.length < 1 ? "I couldn't seem to find that category!" - : "```\n - " + description + "\n```", + : "```\n" + description + "\n```", footer: { text: `Need help with something? Check out our discord using ${ctx.prefix}discord`,