mirror of
https://github.com/osukey/osukey.git
synced 2025-08-03 14:46:38 +09:00
Various updates to ruleset and primary key usages to move closer to realm support
This commit is contained in:
@ -33,7 +33,7 @@ namespace osu.Game.Screens.Select.Leaderboards
|
||||
get => beatmapInfo;
|
||||
set
|
||||
{
|
||||
if (beatmapInfo == value)
|
||||
if (beatmapInfo.Equals(value))
|
||||
return;
|
||||
|
||||
beatmapInfo = value;
|
||||
@ -154,7 +154,7 @@ namespace osu.Game.Screens.Select.Leaderboards
|
||||
return null;
|
||||
}
|
||||
|
||||
if (fetchBeatmapInfo.OnlineID == null || fetchBeatmapInfo.Status <= BeatmapOnlineStatus.Pending)
|
||||
if (fetchBeatmapInfo.OnlineID <= 0 || fetchBeatmapInfo.Status <= BeatmapOnlineStatus.Pending)
|
||||
{
|
||||
PlaceholderState = PlaceholderState.Unavailable;
|
||||
return null;
|
||||
|
Reference in New Issue
Block a user