WIP: Start creating user effects builder
Some checks failed
Test / build (push) Failing after 19s

This commit is contained in:
Ethan Lane 2024-11-23 17:40:29 +00:00
parent 1be9ba23a3
commit 9fce79579b
4 changed files with 38 additions and 1 deletions

View file

@ -7,7 +7,10 @@ export default class Effects extends Command {
this.CommandBuilder = new SlashCommandBuilder()
.setName("effects")
.setDescription("Effects");
.setDescription("Effects")
.addSubcommand(x => x
.setName("list")
.setDescription("List all effects I have"));
}
public override async execute(interaction: CommandInteraction) {