diff --git a/patches/server/Timings-v2.patch b/patches/server/Timings-v2.patch index a992b4ef6c..db94c4f8b2 100644 --- a/patches/server/Timings-v2.patch +++ b/patches/server/Timings-v2.patch @@ -743,11 +743,11 @@ index 0000000000000000000000000000000000000000..00000000000000000000000000000000 + // Paper start + boolean isOversleep = false; + private boolean canOversleep() { -+ return this.mayHaveDelayedTasks && Util.getMillis() < this.delayedTasksMaxNextTickTime; ++ return this.mayHaveDelayedTasks && Util.getNanos() < this.delayedTasksMaxNextTickTimeNanos; + } + + private boolean canSleepForTickNoOversleep() { -+ return this.forceTicks || this.runningTask() || Util.getMillis() < this.nextTickTime; ++ return this.forceTicks || this.runningTask() || Util.getNanos() < this.nextTickTimeNanos; + } + // Paper end +