Rename token request method to avoid double Request terminology

This commit is contained in:
Dean Herbert
2021-03-24 13:02:37 +09:00
parent a1c35677ef
commit 8bed7748d6
3 changed files with 5 additions and 5 deletions

View File

@ -25,7 +25,7 @@ namespace osu.Game.Screens.Play
PlaylistItem = playlistItem;
}
protected override APIRequest<APIScoreToken> CreateTokenRequestRequest() => new CreateRoomScoreRequest(RoomId.Value ?? 0, PlaylistItem.ID, Game.VersionHash);
protected override APIRequest<APIScoreToken> CreateTokenRequest() => new CreateRoomScoreRequest(RoomId.Value ?? 0, PlaylistItem.ID, Game.VersionHash);
protected override APIRequest<MultiplayerScore> CreateSubmissionRequest(Score score, long token) => new SubmitRoomScoreRequest(token, RoomId.Value ?? 0, PlaylistItem.ID, score.ScoreInfo);
}