diff --git a/DiscordBot.App/Commands/AuthenticationCommands.cs b/DiscordBot.App/Commands/AuthenticationCommands.cs index dccfd44..3021180 100644 --- a/DiscordBot.App/Commands/AuthenticationCommands.cs +++ b/DiscordBot.App/Commands/AuthenticationCommands.cs @@ -37,7 +37,7 @@ public AuthenticationCommands(DiscordService discordService, IServerDiscordApi s if (response.Status) await discordMember.GrantRoleAsync(_discordService.MemberRole); - await ctx.CreateResponseAsync(response.Message); + await ctx.CreateResponseAsync(response.Message, ephemeral: true); } } }