From 3111c35b986c2545f6db2014b93a8ac2acb4be94 Mon Sep 17 00:00:00 2001 From: Declan Chidlow Date: Sat, 13 Jul 2024 19:14:20 +0800 Subject: [PATCH] Update test command --- bot/src/bot/commands/misc/test.ts | 36 +++++++++++++++---------------- 1 file changed, 18 insertions(+), 18 deletions(-) diff --git a/bot/src/bot/commands/misc/test.ts b/bot/src/bot/commands/misc/test.ts index 298ca7e..1d14efc 100644 --- a/bot/src/bot/commands/misc/test.ts +++ b/bot/src/bot/commands/misc/test.ts @@ -3,22 +3,22 @@ import SimpleCommand from "../../../struct/commands/SimpleCommand"; import MessageCommandContext from "../../../struct/MessageCommandContext"; export default { - name: 'test', - aliases: [ 'testalias' ], - description: 'Test command', - category: CommandCategory.Miscellaneous, - run: (message: MessageCommandContext, args: string[]) => { - message.reply({ - content: 'Beep boop.', - embeds: [ - { - colour: "#ff0000", - description: "embed description", - title: "embed title", - url: "https://amogus.org", - icon_url: "https://amogus.org/amogus.png" - } - ], - }); - } + name: "test", + aliases: ["testalias"], + description: "Test command", + category: CommandCategory.Miscellaneous, + run: (message: MessageCommandContext, args: string[]) => { + message.reply({ + content: "Beep boop.", + embeds: [ + { + colour: "#58A551", + title: "Test Success!", + description: "You've successfully tested the bot. It works.", + url: "https://automod.vale.rocks", + icon_url: "https://autumn.revolt.chat/avatars/pYjK-QyMv92hy8GUM-b4IK1DMzYILys9s114khzzKY", + }, + ], + }); + }, } as SimpleCommand;