Files
HidekoBot/src/main/java/wtf/beatrice/hidekobot/commands/slash/HelpCommand.java
Beatrice Dellacà 11e4a07698
All checks were successful
continuous-integration/drone/push Build is passing
Refactor objects package
2022-11-22 16:41:08 +01:00

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();
}
}