diff --git a/bot/command/impl/statistics/statsuser.go b/bot/command/impl/statistics/statsuser.go index 83137f6a..12d22312 100644 --- a/bot/command/impl/statistics/statsuser.go +++ b/bot/command/impl/statistics/statsuser.go @@ -211,12 +211,10 @@ func (StatsUserCommand) Execute(ctx registry.CommandContext, userId uint64) { msgEmbed := embed.NewEmbed(). SetTitle("Statistics"). - SetColor(ctx.GetColour(customisation.Green)). - SetAuthor(member.User.Username, "", member.User.AvatarUrl(256)). AddField("Permission Level", permissionLevel, true). AddField("Feedback Rating", fmt.Sprintf("%.1f / 5 ⭐", feedbackRating), true). - AddField("Feedback Count", fmt.Sprintf("%d", feedbackCount), true). AddBlankField(true). + AddField("Feedback Count", fmt.Sprintf("%d", feedbackCount), true). AddField("Average First Response Time (Weekly)", formatNullableTime(weeklyAR), true). AddField("Average First Response Time (Monthly)", formatNullableTime(monthlyAR), true). AddField("Average First Response Time (Total)", formatNullableTime(totalAR), true).