Skip to content

Commit

Permalink
Fix results showing ovr as rank
Browse files Browse the repository at this point in the history
  • Loading branch information
flustix committed Sep 2, 2024
1 parent b0aa28b commit 83c38d6
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ protected override Drawable CreateContent()
{
new Statistic("Overall Rating", request.Response.Data.OverallRating),
new Statistic("Potential Rating", request.Response.Data.PotentialRating),
new Statistic("Rank", request.Response.Data.OverallRating, true)
new Statistic("Rank", request.Response.Data.Rank, true)
}
};
}
Expand Down

0 comments on commit 83c38d6

Please sign in to comment.