From dbfc434fa7a253bf61e7c8ffdd10b7e1b00e2ae6 Mon Sep 17 00:00:00 2001 From: James Seibel Date: Sat, 3 Jun 2023 21:35:57 -0500 Subject: [PATCH] reduce batch generator max queue tasks 5 -> 3 --- .../java/com/seibel/lod/core/generation/BatchGenerator.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/main/java/com/seibel/lod/core/generation/BatchGenerator.java b/core/src/main/java/com/seibel/lod/core/generation/BatchGenerator.java index 59ea2fe5d..f19552bd5 100644 --- a/core/src/main/java/com/seibel/lod/core/generation/BatchGenerator.java +++ b/core/src/main/java/com/seibel/lod/core/generation/BatchGenerator.java @@ -54,7 +54,7 @@ public class BatchGenerator implements IDhApiWorldGenerator * if this is too high it may cause issues when moving, * but if it is too low the generator threads won't have enough tasks to work on */ - private static final int MAX_QUEUED_TASKS = 5; + private static final int MAX_QUEUED_TASKS = 3; public AbstractBatchGenerationEnvironmentWrapper generationGroup; public IDhLevel targetDhLevel;