diff --git a/src/main/java/me/cortex/voxy/common/thread/ServiceSlice.java b/src/main/java/me/cortex/voxy/common/thread/ServiceSlice.java index a8f632f2..846e7476 100644 --- a/src/main/java/me/cortex/voxy/common/thread/ServiceSlice.java +++ b/src/main/java/me/cortex/voxy/common/thread/ServiceSlice.java @@ -96,8 +96,8 @@ public class ServiceSlice extends TrackedObject { Logger.error("Tried to do work on a dead service: " + this.name, new Throwable()); return; } - this.jobCount.release(); this.jobCount2.incrementAndGet(); + this.jobCount.release(); this.threadPool.execute(this); }