mirror of
https://github.com/ppy/osu.git
synced 2025-02-16 00:22:58 +08: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);
|
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
|
rows = rows.Append(new StatisticRow
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user