From 1fd5f6cc6a350c03e568f0d1626e67272762c9ac Mon Sep 17 00:00:00 2001 From: SileNce5k Date: Sat, 12 Apr 2025 03:28:44 +0200 Subject: [PATCH] Don't show page number on help with specific commands --- commands/info/help.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commands/info/help.js b/commands/info/help.js index 6174e26..36ed658 100644 --- a/commands/info/help.js +++ b/commands/info/help.js @@ -60,6 +60,7 @@ module.exports = { start++; } }else if(args[0] === command.name){ + fieldName = "Description"; commands = commands + `${prefix}${command.name}\n` embed.setTitle(command.name.charAt(0).toUpperCase() + command.name.slice(1)) if(command.moreHelp){ @@ -67,7 +68,6 @@ module.exports = { commands = commands + `${element}\n` }); } else { - fieldName = "Description"; commands = commands + `${command.description}`; } break;