From a3d6e3eca50870994db7316c46b3f696ca410554 Mon Sep 17 00:00:00 2001 From: bignutty <3515180-bignutty@users.noreply.gitlab.com> Date: Fri, 17 Jan 2025 21:17:37 +0100 Subject: [PATCH] fix layout issue --- commands/message/core/help.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/commands/message/core/help.js b/commands/message/core/help.js index 5b6c417..c3bf922 100644 --- a/commands/message/core/help.js +++ b/commands/message/core/help.js @@ -55,8 +55,7 @@ function createCommandPage(context, prefix, command, slashCommands) { if (a.required) argument = "-# Required Parameter\n" + argument; if (a.help) argument += ` ​ ${a.help}` - argument += `\n ​ ​ ` - if (a.default !== "") argument += ` ​ ​ ${smallPill(`default: ${a.default}`)}` + if (a.default !== "") argument += `\n ​ ​ ​ ​ ${smallPill(`default: ${a.default}`)}` args.push(argument) }