diff --git a/Content.Server/StationEvents/Events/BureaucraticErrorRule.cs b/Content.Server/StationEvents/Events/BureaucraticErrorRule.cs index b82546a55ba..6415aa4c2af 100644 --- a/Content.Server/StationEvents/Events/BureaucraticErrorRule.cs +++ b/Content.Server/StationEvents/Events/BureaucraticErrorRule.cs @@ -33,12 +33,14 @@ protected override void Started(EntityUid uid, BureaucraticErrorRuleComponent co { var chosenJob = RobustRandom.PickAndTake(jobList); _stationJobs.MakeJobUnlimited(chosenStation.Value, chosenJob); // INFINITE chaos. + /* DeltaV - don't close all other jobs foreach (var job in jobList) { if (_stationJobs.IsJobUnlimited(chosenStation.Value, job)) continue; _stationJobs.TrySetJobSlot(chosenStation.Value, job, 0); } + */ } else {