1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-28 09:02:58 +08:00

Don't process clock

This commit is contained in:
Dan Balasescu 2022-06-02 14:48:55 +09:00
parent 6fb1fe06a0
commit 2209a009f9

View File

@ -20,6 +20,7 @@ namespace osu.Game.Screens.OnlinePlay.Multiplayer.Spectate
if (!UserScores.TryGetValue(userId, out var data))
throw new ArgumentException(@"Provided user is not tracked by this leaderboard", nameof(userId));
data.ScoreProcessor.ProcessCustomClock = false;
data.ScoreProcessor.Clock = new FramedClock(clock);
}