Fix fmhelp command crashing the bot

Was trying to send an array. Didn't think...
This commit is contained in:
SileNce5k 2024-03-07 11:38:28 +01:00
parent 51e810264c
commit 0871b659a1
No known key found for this signature in database
GPG key ID: 961132EB78C8915F

View file

@ -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]);