Skip to content

Commit

Permalink
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
Browse files Browse the repository at this point in the history
  • Loading branch information
lzk228 committed Sep 20, 2024
1 parent 0aca706 commit 9bd1ec0
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ private void OnPersonAssigned(EntityUid uid, PickRandomPersonComponent comp, ref
var allHumans = _mind.GetAliveHumansExcept(args.MindId);

// filter jobs that we don't want to be kill objectives
allHumans.RemoveAll(human => !_job.MindTryGetJobId(human, out var jobId) || !comp.IgnoredJobs.Contains(jobId))
allHumans.RemoveAll(human => !_job.MindTryGetJobId(human, out var jobId) || !comp.IgnoredJobs.Contains(jobId));

if (allHumans.Count == 0)
{
Expand Down

0 comments on commit 9bd1ec0

Please sign in to comment.