Remove lobby preload (#15670)

This commit is contained in:
metalgearsloth
2023-04-23 13:14:25 +10:00
committed by GitHub
parent 34ea3599a0
commit 1bab97a534
4 changed files with 6 additions and 9 deletions

View File

@@ -45,7 +45,6 @@ namespace Content.Shared.GameTicking
public bool YouAreReady { get; }
// UTC.
public TimeSpan StartTime { get; }
public TimeSpan PreloadTime { get; }
public TimeSpan RoundStartTimeSpan { get; }
public bool Paused { get; }
@@ -56,7 +55,6 @@ namespace Content.Shared.GameTicking
LobbyBackground = lobbyBackground;
YouAreReady = youAreReady;
StartTime = startTime;
PreloadTime = preloadTime;
RoundStartTimeSpan = roundStartTimeSpan;
Paused = paused;
}