From 3c1e0fa1156b237504567989509cd4e77430d069 Mon Sep 17 00:00:00 2001 From: Elias Fleckenstein Date: Sun, 6 Mar 2022 16:44:44 +0100 Subject: [PATCH] Tweak help command --- basic.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/basic.js b/basic.js index c827bb9..24171bf 100644 --- a/basic.js +++ b/basic.js @@ -21,7 +21,7 @@ module.exports = { else msg.reply(`Invalid command: ${cmd}`) } else { - msg.reply("Available commands:\n\t" + Object.keys(commands).join("\n\t")) + msg.reply("Available commands:\n\n" + Object.keys(commands).sort().join(", ")) } }, }, -- 2.44.0