Remove TickerLobbyReadyEvent (#17522)

This commit is contained in:
Leon Friedrich
2023-06-25 00:11:08 +12:00
committed by GitHub
parent 694ba695b0
commit ecae0230f6
5 changed files with 0 additions and 41 deletions

View File

@@ -49,7 +49,6 @@ namespace Content.Client.GameTicking.Managers
public event Action? InfoBlobUpdated;
public event Action? LobbyStatusUpdated;
public event Action? LobbyReadyUpdated;
public event Action? LobbyLateJoinStatusUpdated;
public event Action<IReadOnlyDictionary<EntityUid, Dictionary<string, uint?>>>? LobbyJobsAvailableUpdated;
@@ -62,7 +61,6 @@ namespace Content.Client.GameTicking.Managers
SubscribeNetworkEvent<TickerLobbyStatusEvent>(LobbyStatus);
SubscribeNetworkEvent<TickerLobbyInfoEvent>(LobbyInfo);
SubscribeNetworkEvent<TickerLobbyCountdownEvent>(LobbyCountdown);
SubscribeNetworkEvent<TickerLobbyReadyEvent>(LobbyReady);
SubscribeNetworkEvent<RoundEndMessageEvent>(RoundEnd);
SubscribeNetworkEvent<RequestWindowAttentionEvent>(msg =>
{
@@ -124,11 +122,6 @@ namespace Content.Client.GameTicking.Managers
Paused = message.Paused;
}
private void LobbyReady(TickerLobbyReadyEvent message)
{
LobbyReadyUpdated?.Invoke();
}
private void RoundEnd(RoundEndMessageEvent message)
{
if (message.LobbySong != null)