diff --git a/commands/misc/fm.js b/commands/misc/fm.js index 847d506..83e0720 100644 --- a/commands/misc/fm.js +++ b/commands/misc/fm.js @@ -5,11 +5,11 @@ module.exports = { name: 'fm', description: 'Last fm commands. See `help fm` for more info.', moreHelp: ["Set username: `fm set `",], - async execute({ message, args }) { + async execute({ message, args, prefix }) { let sendText = "Something went wrong."; switch (args[0]) { case "help": - sendText = this.moreHelp.join("\n"); + sendText = this.moreHelp.join("\n").replace("", prefix); break; case "set": sendText = await fmlogin(message.author.id, args[1]);