How the fuck did none of this turn up in local testing :stare:

This commit is contained in:
moonheart08
2022-05-10 14:36:48 -05:00
parent f66b57ca47
commit 147ed2f694
2 changed files with 1 additions and 1 deletions

View File

@@ -228,7 +228,6 @@ namespace Content.Client.LateJoin
private void JobsAvailableUpdated(IReadOnlyDictionary<EntityUid, Dictionary<string, uint?>> _) private void JobsAvailableUpdated(IReadOnlyDictionary<EntityUid, Dictionary<string, uint?>> _)
{ {
Logger.Debug("UI rebuilt.");
RebuildUI(); RebuildUI();
} }

View File

@@ -42,6 +42,7 @@ public sealed partial class StationJobsSystem : EntitySystem
{ {
_cachedAvailableJobs = GenerateJobsAvailableEvent(); _cachedAvailableJobs = GenerateJobsAvailableEvent();
RaiseNetworkEvent(_cachedAvailableJobs, Filter.Empty().AddPlayers(_gameTicker.PlayersInLobby.Keys)); RaiseNetworkEvent(_cachedAvailableJobs, Filter.Empty().AddPlayers(_gameTicker.PlayersInLobby.Keys));
_availableJobsDirty = false;
} }
} }