HidekoBot/src/main/java/wtf/beatrice/hidekobot/slashcommands/InviteCommand.java

14 lines
436 B
Java
Raw Normal View History

2022-11-20 16:07:04 +01:00
package wtf.beatrice.hidekobot.slashcommands;
import net.dv8tion.jda.api.events.interaction.command.SlashCommandInteractionEvent;
import org.jetbrains.annotations.NotNull;
import wtf.beatrice.hidekobot.Configuration;
public class InviteCommand
{
public InviteCommand(@NotNull SlashCommandInteractionEvent event)
{
event.reply("Here's your link ✨ " + Configuration.getInviteUrl()).setEphemeral(true).queue();
}
}