From 34deaad718956d1fe9ccc0825f18d747dac55c4f Mon Sep 17 00:00:00 2001 From: Denis Titovets Date: Mon, 27 Apr 2026 07:58:37 +0300 Subject: [PATCH] Remove points statistic from `MatchmakingStatsTooltip` (#37495) matches web | master | `osu-web` | PR | |-|-|-| | image | image | image | --- .../Profile/Header/Components/MatchmakingStatsTooltip.cs | 2 -- 1 file changed, 2 deletions(-) diff --git a/osu.Game/Overlays/Profile/Header/Components/MatchmakingStatsTooltip.cs b/osu.Game/Overlays/Profile/Header/Components/MatchmakingStatsTooltip.cs index 07c808023f..1725db888e 100644 --- a/osu.Game/Overlays/Profile/Header/Components/MatchmakingStatsTooltip.cs +++ b/osu.Game/Overlays/Profile/Header/Components/MatchmakingStatsTooltip.cs @@ -71,7 +71,6 @@ namespace osu.Game.Overlays.Profile.Header.Components new TableColumn(dimension: new Dimension(GridSizeMode.AutoSize)), new TableColumn(RankingsStrings.MatchmakingWins, dimension: new Dimension(GridSizeMode.AutoSize)), new TableColumn(RankingsStrings.MatchmakingPlays, dimension: new Dimension(GridSizeMode.AutoSize)), - new TableColumn(RankingsStrings.MatchmakingPoints, dimension: new Dimension(GridSizeMode.AutoSize)), new TableColumn(RankingsStrings.MatchmakingRating, dimension: new Dimension(GridSizeMode.AutoSize)), ], RowSize = new Dimension(GridSizeMode.AutoSize), @@ -91,7 +90,6 @@ namespace osu.Game.Overlays.Profile.Header.Components new StatisticText(colourProvider) { Text = $"#{stat.Rank:N0}" }, new StatisticText(colourProvider) { Text = stat.FirstPlacements.ToString("N0") }, new StatisticText(colourProvider) { Text = stat.Plays.ToString("N0") }, - new StatisticText(colourProvider) { Text = stat.TotalPoints.ToString("N0") }, new StatisticText(colourProvider) { Text = stat.Rating.ToString("N0") + (stat.IsRatingProvisional ? "*" : string.Empty) } ]; }