diff --git a/commands/System/help.js b/commands/System/help.js index 047bce1..1bb4dca 100644 --- a/commands/System/help.js +++ b/commands/System/help.js @@ -23,7 +23,7 @@ exports.run = (client, message, args, level) => { if (client.commands.has(command)) { command = client.commands.get(command); if (level < client.levelCache[command.conf.permLevel]) return; - message.channel.send(`= ${command.help.name} = \n${command.help.description}\nusage:: ${command.help.usage}\naliases:: ${command.conf.aliases.join(", ")}\n= ${command.help.name} =`, {code:"asciidoc"}); + message.channel.send(`= ${command.help.name} = \n${command.help.description}\nusage:: ${command.help.usage}\n${command.conf.aliases.join(", ") !== "" ? `aliases:: ${command.conf.aliases.join(", ")}` : "aliases:: none"}`, {code:"asciidoc"}); } } };