Update test command

This commit is contained in:
Declan Chidlow 2024-07-13 19:14:20 +08:00
parent 0a29694764
commit 3111c35b98

View file

@ -3,22 +3,22 @@ import SimpleCommand from "../../../struct/commands/SimpleCommand";
import MessageCommandContext from "../../../struct/MessageCommandContext"; import MessageCommandContext from "../../../struct/MessageCommandContext";
export default { export default {
name: 'test', name: "test",
aliases: [ 'testalias' ], aliases: ["testalias"],
description: 'Test command', description: "Test command",
category: CommandCategory.Miscellaneous, category: CommandCategory.Miscellaneous,
run: (message: MessageCommandContext, args: string[]) => { run: (message: MessageCommandContext, args: string[]) => {
message.reply({ message.reply({
content: 'Beep boop.', content: "Beep boop.",
embeds: [ embeds: [
{ {
colour: "#ff0000", colour: "#58A551",
description: "embed description", title: "Test Success!",
title: "embed title", description: "You've successfully tested the bot. It works.",
url: "https://amogus.org", url: "https://automod.vale.rocks",
icon_url: "https://amogus.org/amogus.png" icon_url: "https://autumn.revolt.chat/avatars/pYjK-QyMv92hy8GUM-b4IK1DMzYILys9s114khzzKY",
} },
], ],
}); });
} },
} as SimpleCommand; } as SimpleCommand;