Merge branch 'master' into spectator-state-rework

This commit is contained in:
Dan Balasescu
2022-02-02 18:57:04 +09:00
57 changed files with 752 additions and 93 deletions

View File

@ -115,6 +115,9 @@ namespace osu.Game.Online.Spectator
Task ISpectatorClient.UserSentFrames(int userId, FrameDataBundle data)
{
if (data.Frames.Count > 0)
data.Frames[^1].Header = data.Header;
Schedule(() => OnNewFrames?.Invoke(userId, data));
return Task.CompletedTask;