mirror of
https://github.com/ppy/osu.git
synced 2025-03-10 04:40:29 +08:00
Fix epic code failure
I wasn't feeling well last night.
This commit is contained in:
parent
7201bac60d
commit
9083daf363
@ -20,8 +20,8 @@ namespace osu.Game.Screens.OnlinePlay.Playlists
|
||||
{
|
||||
}
|
||||
|
||||
protected override APIRequest<MultiplayerScore> CreateScoreRequest() => Score == null
|
||||
? new ShowPlaylistScoreRequest(RoomId, PlaylistItem.ID, Score?.OnlineID ?? -1)
|
||||
protected override APIRequest<MultiplayerScore> CreateScoreRequest() => Score != null
|
||||
? new ShowPlaylistScoreRequest(RoomId, PlaylistItem.ID, Score.OnlineID)
|
||||
: new ShowPlaylistUserScoreRequest(RoomId, PlaylistItem.ID, API.LocalUser.Value.Id);
|
||||
|
||||
protected override ScoreInfo[] PerformSuccessCallback(Action<IEnumerable<ScoreInfo>> callback, List<MultiplayerScore> scores, MultiplayerScores? pivot = null)
|
||||
|
Loading…
x
Reference in New Issue
Block a user