From 0871b659a16ac257e3e4d62da28ab71fd522614f Mon Sep 17 00:00:00 2001 From: SileNce5k Date: Thu, 7 Mar 2024 11:38:28 +0100 Subject: [PATCH] Fix fmhelp command crashing the bot Was trying to send an array. Didn't think... --- commands/misc/fm.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commands/misc/fm.js b/commands/misc/fm.js index d789ae9..847d506 100644 --- a/commands/misc/fm.js +++ b/commands/misc/fm.js @@ -9,7 +9,7 @@ module.exports = { let sendText = "Something went wrong."; switch (args[0]) { case "help": - sendText = this.moreHelp; + sendText = this.moreHelp.join("\n"); break; case "set": sendText = await fmlogin(message.author.id, args[1]);