All checks were successful
continuous-integration/drone/push Build is passing
38 lines
1.1 KiB
Java
38 lines
1.1 KiB
Java
package wtf.beatrice.hidekobot.commands.slash;
|
|
|
|
import net.dv8tion.jda.api.EmbedBuilder;
|
|
import net.dv8tion.jda.api.events.interaction.command.SlashCommandInteractionEvent;
|
|
import net.dv8tion.jda.api.interactions.commands.build.CommandData;
|
|
import net.dv8tion.jda.api.interactions.commands.build.Commands;
|
|
import org.jetbrains.annotations.NotNull;
|
|
import wtf.beatrice.hidekobot.Cache;
|
|
import wtf.beatrice.hidekobot.objects.commands.SlashCommandImpl;
|
|
|
|
public class HelpCommand extends SlashCommandImpl
|
|
{
|
|
@Override
|
|
public CommandData getSlashCommandData()
|
|
{
|
|
return Commands.slash("help",
|
|
"Get general help on the bot.");
|
|
}
|
|
|
|
@Override
|
|
public void runSlashCommand(@NotNull SlashCommandInteractionEvent event)
|
|
{
|
|
// defer reply because replying might take a while
|
|
event.deferReply().queue();
|
|
|
|
EmbedBuilder embedBuilder = new EmbedBuilder();
|
|
|
|
// embed processing
|
|
{
|
|
embedBuilder.setColor(Cache.getBotColor());
|
|
embedBuilder.setTitle("Help");
|
|
|
|
}
|
|
|
|
event.getHook().editOriginalEmbeds(embedBuilder.build()).queue();
|
|
}
|
|
}
|