mirror of
https://github.com/ppy/osu.git
synced 2025-01-14 03:15:45 +08:00
Fix incorrect invoke
This commit is contained in:
parent
3ec193d47e
commit
a49a9ed0a0
@ -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;
|
||||
}));
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user