change global flag to a list of serverIds and if it is empty it will be global

This commit is contained in:
tueem 2024-10-25 20:25:57 +02:00
parent ec75215b72
commit 0c9d8ecb53
No known key found for this signature in database
GPG Key ID: 819A0F7C36B9CF07

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