From 84627daaea4f9500a7e2419b601a2c797a54a256 Mon Sep 17 00:00:00 2001 From: Presti Date: Wed, 16 Oct 2024 13:46:43 +0200 Subject: [PATCH] Missing subcommand. Signed-off-by: Presti --- .../java/de/presti/ree6/commands/impl/community/Birthday.java | 1 + 1 file changed, 1 insertion(+) diff --git a/src/main/java/de/presti/ree6/commands/impl/community/Birthday.java b/src/main/java/de/presti/ree6/commands/impl/community/Birthday.java index 4d34b1c32..806863f65 100644 --- a/src/main/java/de/presti/ree6/commands/impl/community/Birthday.java +++ b/src/main/java/de/presti/ree6/commands/impl/community/Birthday.java @@ -119,6 +119,7 @@ public CommandData getCommandData() { "command.description.birthday") .addSubcommands(new SubcommandData("remove", "Remove a Birthday entry!") .addOptions(new OptionData(OptionType.USER, "user", "The User which should get their birthday entry removed.", false)), + new SubcommandData("list", "See all of the Birthday entries!"), new SubcommandData("add", "Add a Birthday entry!") .addOptions(new OptionData(OptionType.INTEGER, "day", "The day of the month.", true).setMinValue(1).setMaxValue(31), new OptionData(OptionType.INTEGER, "month", "Your birth month.", true).setMinValue(1).setMaxValue(12),