From 65471712f7ccb1be2bebb8f868d4fc5bbe5361d9 Mon Sep 17 00:00:00 2001 From: JandereDev Date: Wed, 13 Oct 2021 22:03:22 +0200 Subject: [PATCH] xfdijgodfmgdseiuhjgrnm i am tired --- src/bot/commands/help.ts | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 src/bot/commands/help.ts diff --git a/src/bot/commands/help.ts b/src/bot/commands/help.ts new file mode 100644 index 0000000..1c73589 --- /dev/null +++ b/src/bot/commands/help.ts @@ -0,0 +1,11 @@ +import Command from "../../struct/Command"; +import { Message } from "revolt.js/dist/maps/Messages"; + +export default { + name: 'help', + aliases: null, + description: 'help command i guess', + run: (message: Message, args: string[]) => { + message.reply(`command list can be found here kthxbay https://github.com/janderedev/revolt-automod/wiki/Bot-usage`); + } +} as Command;