Skip to content

Commit

Permalink
Fix help embed
Browse files Browse the repository at this point in the history
  • Loading branch information
Blocksnmore committed Jul 28, 2024
1 parent d282937 commit 7b4d735
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions commands/misc/help.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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: [],
Expand All @@ -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`,
Expand Down

0 comments on commit 7b4d735

Please sign in to comment.