mirror of
https://github.com/ppy/osu.git
synced 2024-11-06 06:57:39 +08:00
Create replay via the ICreateReplay
interface instead of explicitly ModAutoplay
This commit is contained in:
parent
9221213fe5
commit
cbf3ef5400
@ -111,9 +111,9 @@ namespace osu.Game.Screens.Select
|
||||
|
||||
Player createPlayer()
|
||||
{
|
||||
var autoplayMod = Mods.Value.OfType<ModAutoplay>().FirstOrDefault();
|
||||
if (autoplayMod != null)
|
||||
return new ReplayPlayer((beatmap, mods) => autoplayMod.CreateReplayScore(beatmap, mods));
|
||||
var replayGeneratingMod = Mods.Value.OfType<ICreateReplay>().FirstOrDefault();
|
||||
if (replayGeneratingMod != null)
|
||||
return new ReplayPlayer((beatmap, mods) => replayGeneratingMod.CreateReplayScore(beatmap, mods));
|
||||
|
||||
return new SoloPlayer();
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user