mirror of
https://github.com/ppy/osu.git
synced 2025-01-15 06:42:56 +08:00
Revert comment removal
This commit is contained in:
parent
13d85b8cc7
commit
eaeb66547e
@ -149,9 +149,16 @@ namespace osu.Game.Screens.OnlinePlay.Multiplayer
|
|||||||
|
|
||||||
protected override void StartGameplay()
|
protected override void StartGameplay()
|
||||||
{
|
{
|
||||||
|
// We can enter this screen one of two ways:
|
||||||
|
// 1. Via the automatic natural progression of PlayerLoader into Player.
|
||||||
|
// We'll arrive here in a Loaded state, and we need to let the server know that we're ready to start.
|
||||||
|
// 2. Via the server forcefully starting gameplay because players have been hanging out in PlayerLoader for too long.
|
||||||
|
// We'll arrive here in a Playing state, and we should neither show the loading spinner nor tell the server that we're ready to start (gameplay has already started).
|
||||||
|
//
|
||||||
|
// The base call is blocked here because in both cases gameplay is started only when the server says so via onGameplayStarted().
|
||||||
|
|
||||||
if (client.LocalUser?.State == MultiplayerUserState.Loaded)
|
if (client.LocalUser?.State == MultiplayerUserState.Loaded)
|
||||||
{
|
{
|
||||||
// block base call, but let the server know we are ready to start.
|
|
||||||
loadingDisplay.Show();
|
loadingDisplay.Show();
|
||||||
client.ChangeState(MultiplayerUserState.ReadyForGameplay);
|
client.ChangeState(MultiplayerUserState.ReadyForGameplay);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user