diff --git a/Content.Server/GameObjects/EntitySystems/JobQueues/Job.cs b/Content.Server/GameObjects/EntitySystems/JobQueues/Job.cs index 014d35575c..08379de594 100644 --- a/Content.Server/GameObjects/EntitySystems/JobQueues/Job.cs +++ b/Content.Server/GameObjects/EntitySystems/JobQueues/Job.cs @@ -127,6 +127,7 @@ namespace Content.Server.GameObjects.EntitySystems.JobQueues public void Run() { + StopWatch.Restart(); _workInProgress ??= ProcessWrap(); if (Status == JobStatus.Finished) @@ -140,7 +141,6 @@ namespace Content.Server.GameObjects.EntitySystems.JobQueues _resume = null; Status = JobStatus.Running; - StopWatch.Restart(); if (Cancellation.IsCancellationRequested) {