mirror of
https://github.com/osukey/osukey.git
synced 2025-08-04 23:24:04 +09:00
CreateScoreInfo -> CreateScore
This commit is contained in:
@ -276,7 +276,7 @@ namespace osu.Game.Screens.Play
|
||||
{
|
||||
if (!IsCurrentScreen) return;
|
||||
|
||||
var score = CreateScoreInfo();
|
||||
var score = CreateScore();
|
||||
if (RulesetContainer.Replay == null)
|
||||
scoreManager.Import(score, true);
|
||||
|
||||
@ -287,7 +287,7 @@ namespace osu.Game.Screens.Play
|
||||
}
|
||||
}
|
||||
|
||||
protected virtual ScoreInfo CreateScoreInfo()
|
||||
protected virtual ScoreInfo CreateScore()
|
||||
{
|
||||
var score = new ScoreInfo
|
||||
{
|
||||
|
@ -20,6 +20,6 @@ namespace osu.Game.Screens.Play
|
||||
RulesetContainer.SetReplay(score.Replay);
|
||||
}
|
||||
|
||||
protected override ScoreInfo CreateScoreInfo() => score.ScoreInfo;
|
||||
protected override ScoreInfo CreateScore() => score.ScoreInfo;
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user