Skip to content

Commit

Permalink
change: raise ScalableLux tasks higher than usual worldgen tasks
Browse files Browse the repository at this point in the history
  • Loading branch information
ishland committed Apr 4, 2024
1 parent d80a25b commit 23f108b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ public static void scheduleTask(int ownerTag, Runnable task, int x, int z, int r
lockTokens.add(new LockTokenImpl(ownerTag, ChunkPos.toLong(x + i, z + j), LockTokenImpl.Usage.LIGHTING));
}
}
final SimplePrioritizedTask simpleTask = new SimplePrioritizedTask(task, lockTokens.toArray(LockToken[]::new), 240);
final SimplePrioritizedTask simpleTask = new SimplePrioritizedTask(task, lockTokens.toArray(LockToken[]::new), 17);
GlobalExecutors.prioritizedScheduler.schedule(simpleTask);
}

Expand Down

0 comments on commit 23f108b

Please sign in to comment.