mirror of
https://github.com/ppy/osu
synced 2025-01-16 11:01:03 +00:00
Don't show global rankings display when not logged in
This commit is contained in:
parent
145130ba80
commit
36a6f3685e
@ -27,7 +27,10 @@ namespace osu.Game.Screens.Ranking.Statistics
|
||||
{
|
||||
var rows = base.CreateStatisticRows(newScore, playableBeatmap);
|
||||
|
||||
if (newScore.UserID == achievedScore.UserID && newScore.OnlineID == achievedScore.OnlineID)
|
||||
if (newScore.UserID > 1
|
||||
&& newScore.UserID == achievedScore.UserID
|
||||
&& newScore.OnlineID > 0
|
||||
&& newScore.OnlineID == achievedScore.OnlineID)
|
||||
{
|
||||
rows = rows.Append(new StatisticRow
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user