Compare commits

..

No commits in common. "0c9d8ecb538076e0c4c1b127ba5327cc8f8839f1" and "d0cbb096a85e605d23393377d970e1c2842fc784" have entirely different histories.

2 changed files with 1 additions and 2 deletions

@ -15,7 +15,7 @@ public record ExecutableCommandDefinition(
if (!(o instanceof ExecutableCommandDefinition)) if (!(o instanceof ExecutableCommandDefinition))
return false; return false;
ExecutableCommandDefinition other = (ExecutableCommandDefinition) o; ExecutableCommandDefinition other = (ExecutableCommandDefinition) o;
return other.applicationCommand.name().equals(this.applicationCommand.name()) && return other.applicationCommand.equals(this.applicationCommand) &&
other.subCommandGroups.equals(this.subCommandGroups) && other.subCommandGroups.equals(this.subCommandGroups) &&
other.subCommand.equals(this.subCommand); other.subCommand.equals(this.subCommand);
} }

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