From 147ed2f69419487009df5841b624f7ed28371856 Mon Sep 17 00:00:00 2001 From: moonheart08 Date: Tue, 10 May 2022 14:36:48 -0500 Subject: [PATCH] How the fuck did none of this turn up in local testing :stare: --- Content.Client/LateJoin/LateJoinGui.cs | 1 - Content.Server/Station/Systems/StationJobsSystem.cs | 1 + 2 files changed, 1 insertion(+), 1 deletion(-) diff --git a/Content.Client/LateJoin/LateJoinGui.cs b/Content.Client/LateJoin/LateJoinGui.cs index 97d18d54a5..dc5f6f65d2 100644 --- a/Content.Client/LateJoin/LateJoinGui.cs +++ b/Content.Client/LateJoin/LateJoinGui.cs @@ -228,7 +228,6 @@ namespace Content.Client.LateJoin private void JobsAvailableUpdated(IReadOnlyDictionary> _) { - Logger.Debug("UI rebuilt."); RebuildUI(); } diff --git a/Content.Server/Station/Systems/StationJobsSystem.cs b/Content.Server/Station/Systems/StationJobsSystem.cs index aefc8e5802..bf582e0e37 100644 --- a/Content.Server/Station/Systems/StationJobsSystem.cs +++ b/Content.Server/Station/Systems/StationJobsSystem.cs @@ -42,6 +42,7 @@ public sealed partial class StationJobsSystem : EntitySystem { _cachedAvailableJobs = GenerateJobsAvailableEvent(); RaiseNetworkEvent(_cachedAvailableJobs, Filter.Empty().AddPlayers(_gameTicker.PlayersInLobby.Keys)); + _availableJobsDirty = false; } }