Update test command
This commit is contained in:
parent
0a29694764
commit
3111c35b98
1 changed files with 18 additions and 18 deletions
|
@ -3,22 +3,22 @@ import SimpleCommand from "../../../struct/commands/SimpleCommand";
|
|||
import MessageCommandContext from "../../../struct/MessageCommandContext";
|
||||
|
||||
export default {
|
||||
name: 'test',
|
||||
aliases: [ 'testalias' ],
|
||||
description: 'Test command',
|
||||
name: "test",
|
||||
aliases: ["testalias"],
|
||||
description: "Test command",
|
||||
category: CommandCategory.Miscellaneous,
|
||||
run: (message: MessageCommandContext, args: string[]) => {
|
||||
message.reply({
|
||||
content: 'Beep boop.',
|
||||
content: "Beep boop.",
|
||||
embeds: [
|
||||
{
|
||||
colour: "#ff0000",
|
||||
description: "embed description",
|
||||
title: "embed title",
|
||||
url: "https://amogus.org",
|
||||
icon_url: "https://amogus.org/amogus.png"
|
||||
}
|
||||
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;
|
||||
|
|
Loading…
Reference in a new issue