diff --git a/Content.Server/GameTicking/GameTicker.JobController.cs b/Content.Server/GameTicking/GameTicker.JobController.cs index 32fb69e2e8..1051af0f65 100644 --- a/Content.Server/GameTicking/GameTicker.JobController.cs +++ b/Content.Server/GameTicking/GameTicker.JobController.cs @@ -45,7 +45,11 @@ namespace Content.Server.GameTicking .Where(j => { var (jobId, priority) = j; - var job = _prototypeManager.Index(jobId); + if (!_prototypeManager.TryIndex(jobId, out JobPrototype job)) + { + // Job doesn't exist, probably old data? + return false; + } if (job.IsHead != heads) { return false;