make the scoresaber main cmd show more data
This commit is contained in:
@ -4,7 +4,6 @@ import lombok.AllArgsConstructor;
|
||||
import lombok.Getter;
|
||||
import lombok.NonNull;
|
||||
import lombok.Setter;
|
||||
import net.dv8tion.jda.api.Permission;
|
||||
import net.dv8tion.jda.api.interactions.commands.OptionMapping;
|
||||
import net.dv8tion.jda.api.interactions.commands.SlashCommandInteraction;
|
||||
import net.dv8tion.jda.internal.interactions.CommandDataImpl;
|
||||
@ -31,7 +30,7 @@ public abstract class BatCommand implements BatCommandExecutor {
|
||||
/**
|
||||
* The category of the command
|
||||
*/
|
||||
private final Category category;
|
||||
private Category category;
|
||||
|
||||
/**
|
||||
* The command data for the slash command
|
||||
@ -76,10 +75,11 @@ public abstract class BatCommand implements BatCommandExecutor {
|
||||
* The category of the command
|
||||
*/
|
||||
@AllArgsConstructor @Getter
|
||||
private enum Category {
|
||||
protected enum Category {
|
||||
GENERAL("General"),
|
||||
MODERATION("Moderation"),
|
||||
SERVER("Server");
|
||||
SERVER("Server"),
|
||||
BEAT_SABER("Beat Saber");
|
||||
|
||||
/**
|
||||
* The name of the category
|
||||
|
Reference in New Issue
Block a user