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;