aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorElias Fleckenstein <eliasfleckenstein@web.de>2022-03-06 16:44:44 +0100
committerElias Fleckenstein <eliasfleckenstein@web.de>2022-03-06 16:44:44 +0100
commit3c1e0fa1156b237504567989509cd4e77430d069 (patch)
treec965c7457d54c55352d6dc677e2b925825603245
parentc310aecb99c3278d8f85a46dab0306b97ed4cdb2 (diff)
downloadfurrybot-discord-3c1e0fa1156b237504567989509cd4e77430d069.tar.xz
Tweak help command
-rw-r--r--basic.js2
1 files changed, 1 insertions, 1 deletions
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(", "))
}
},
},