Skip to content

Commit

Permalink
Merge pull request #15 from voruti/ephemeral-list-command
Browse files Browse the repository at this point in the history
  • Loading branch information
fooooooooooooooo committed Nov 7, 2022
2 parents a0f3b48 + ee8a5b9 commit d07e1cf
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,8 @@ public void handle(SlashCommandInteraction interaction) {
}
sb.append("```");

interaction.reply(sb.toString()).queue();
interaction.reply(sb.toString())
.setEphemeral(true)
.queue();
}
}

0 comments on commit d07e1cf

Please sign in to comment.