35 lines
886 B
Java
35 lines
886 B
Java
package com.alttd.commandManager.commands.AddCommand;
|
|
|
|
import com.alttd.commandManager.DiscordCommand;
|
|
import com.alttd.commandManager.SubCommand;
|
|
import com.alttd.commandManager.SubCommandGroup;
|
|
import net.dv8tion.jda.api.events.interaction.command.CommandAutoCompleteInteractionEvent;
|
|
import net.dv8tion.jda.api.events.interaction.command.SlashCommandInteractionEvent;
|
|
|
|
public class SubCommandSetGroup extends SubCommand {
|
|
|
|
protected SubCommandSetGroup(SubCommandGroup parentGroup, DiscordCommand parent) {
|
|
super(parentGroup, parent);
|
|
}
|
|
|
|
@Override
|
|
public String getName() {
|
|
return "group";
|
|
}
|
|
|
|
@Override
|
|
public void execute(SlashCommandInteractionEvent event) {
|
|
|
|
}
|
|
|
|
@Override
|
|
public void suggest(CommandAutoCompleteInteractionEvent event) {
|
|
|
|
}
|
|
|
|
@Override
|
|
public String getHelpMessage() {
|
|
return null;
|
|
}
|
|
}
|