From e0dc5108f2f81b3ad3f3db3c0c483b40ed54fd36 Mon Sep 17 00:00:00 2001 From: David Sevilla Martin <6401250+dsevillamartin@users.noreply.github.com> Date: Sat, 2 Mar 2024 21:37:54 -0500 Subject: [PATCH] discord: commands > add more aliases to text-only 'help' --- lib/Discord/Commands/Help.js | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/lib/Discord/Commands/Help.js b/lib/Discord/Commands/Help.js index 2281f68..c483399 100644 --- a/lib/Discord/Commands/Help.js +++ b/lib/Discord/Commands/Help.js @@ -11,14 +11,17 @@ class HelpCommand extends Command { }; this.setConf({ - aliases: ['h'], + aliases: ['h', 'init', 'remove'], msgTrigger: true, }); } async run(msg) { msg.reply( - 'Yappy now uses slash commands! Use `/` to see available commands.' + [ + 'Yappy now uses slash commands! Use `/` to see available commands.', + 'To setup repositories, use `/setup`. To configure the filtering options, use `/conf filter`.', + ].join('\n') ); } }