Fix incorrect invoke

This commit is contained in:
Dan Balasescu
2022-01-31 17:19:04 +09:00
parent 3ec193d47e
commit a49a9ed0a0

View File

@ -101,7 +101,7 @@ namespace osu.Game.Screens.OnlinePlay.Multiplayer.Spectate
stack.Push(new MultiSpectatorPlayerLoader(Score, () =>
{
var player = new MultiSpectatorPlayer(Score, GameplayClock);
player.OnGameplayStarted += OnGameplayStarted;
player.OnGameplayStarted += () => OnGameplayStarted?.Invoke();
return player;
}));