add isGlobal variable to the command annotation

This commit is contained in:
tueem 2024-10-25 20:09:22 +02:00
parent d0cbb096a8
commit f12c83cf96
No known key found for this signature in database
GPG Key ID: 819A0F7C36B9CF07

@ -12,4 +12,5 @@ public @interface ApplicationCommand {
public String description() default "";
public String[] aliases() default {};
public CommandOption[] options() default {};
public boolean isGlobal() default false;
}