line 824
string status = target.IsConnected ? lang.GetMessage("Online", null) : lang.GetMessage("Offline", null);
EmbedBuilder builder = new EmbedBuilder()
.WithTitle(GetLang("Embed_MessageTitle"))
.SetColor(reportConfig.Color)
.AddInlineField(GetLang("Embed_ReportTarget"), $"[{target.Name}](https://steamcommunity.com/profiles/{target.Id})")
.AddInlineField(GetLang("Embed_ReportPlayer"), $"[{player.Name}](https://steamcommunity.com/profiles/{player.Id})")
.AddInlineField(GetLang("Embed_ReportStatus"), status)
.AddField(GetLang("Embed_ReportReason"), cleanReason)
.AddInlineField(GetLang("Embed_ReportCount"), _data.Players[target.Id].Reports.ToString());