Improve invite command
continuous-integration/drone/push Build is passing Details

This commit is contained in:
Bea 2022-11-20 16:20:50 +01:00
parent 18db0282d5
commit 4817bacf5c
1 changed files with 11 additions and 1 deletions

View File

@ -1,6 +1,8 @@
package wtf.beatrice.hidekobot.slashcommands;
import net.dv8tion.jda.api.entities.channel.ChannelType;
import net.dv8tion.jda.api.events.interaction.command.SlashCommandInteractionEvent;
import net.dv8tion.jda.api.requests.restaction.interactions.ReplyCallbackAction;
import org.jetbrains.annotations.NotNull;
import wtf.beatrice.hidekobot.Configuration;
@ -8,6 +10,14 @@ public class InviteCommand
{
public InviteCommand(@NotNull SlashCommandInteractionEvent event)
{
event.reply("Here's your link ✨ " + Configuration.getInviteUrl()).setEphemeral(true).queue();
ReplyCallbackAction reply = event.reply("Here's your link ✨ " + Configuration.getInviteUrl());
// only make message permanent in DMs
if(!(event.getChannelType() == ChannelType.PRIVATE))
{
reply = reply.setEphemeral(true);
}
reply.queue();
}
}