Skip to content

Commit

Permalink
Display kick embed as red (#21)
Browse files Browse the repository at this point in the history
  • Loading branch information
oliverbooth committed Jul 24, 2022
1 parent 54ca2f5 commit 8e238d8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Hammer/Services/BanService.cs
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@ public async Task<Infraction> KickAsync(DiscordMember member, DiscordMember staf
await member.RemoveAsync(reason).ConfigureAwait(false);

var embed = new DiscordEmbedBuilder();
embed.WithColor(DiscordColor.SpringGreen);
embed.WithColor(DiscordColor.Red);
embed.WithAuthor(member);
embed.WithTitle("User kicked");
embed.AddField("User", member.Mention, true);
Expand Down

0 comments on commit 8e238d8

Please sign in to comment.