feat(command): add option ranges to options

This commit is contained in:
tueem 2025-03-22 12:31:25 +01:00
parent caa2ee7089
commit d2eec8b07c
Signed by: tueem
GPG Key ID: 65C8667EC17A88FB
2 changed files with 7 additions and 0 deletions

View File

@ -0,0 +1,6 @@
package net.tomatentum.marinara.interaction.commands.annotation;
public @interface Range {
public double min() default Double.MIN_VALUE;
public double max() default Double.MAX_VALUE;
}

View File

@ -15,6 +15,7 @@ public @interface SlashCommandOption {
public SlashCommandOptionType type() default SlashCommandOptionType.STRING;
public boolean required() default false;
public boolean autocomplete() default false;
public Range range() default @Range;
public CommandChoices choices() default @CommandChoices;
public static enum PlaceHolderEnum {