9
0
mirror of https://github.com/Winds-Studio/Leaf.git synced 2025-12-29 11:59:24 +00:00

[ci skip] cleanup

This commit is contained in:
Dreeam
2025-03-21 08:54:57 -04:00
parent db4ee06274
commit c276c2ba48
14 changed files with 435 additions and 705 deletions

View File

@@ -6,6 +6,7 @@ import org.jetbrains.annotations.NotNull;
import java.util.concurrent.ThreadFactory;
public class SparklyPaperServerLevelTickExecutorThreadFactory implements ThreadFactory {
private final String worldName;
public SparklyPaperServerLevelTickExecutorThreadFactory(final String worldName) {

View File

@@ -10,7 +10,6 @@ public class AsyncChunkSend extends ConfigModules {
return EnumConfigCategory.ASYNC.getBaseKeyName() + ".async-chunk-send";
}
@Experimental
public static boolean enabled = false;
@Override

View File

@@ -2,12 +2,15 @@ package org.dreeam.leaf.config.modules.async;
import org.dreeam.leaf.config.ConfigModules;
import org.dreeam.leaf.config.EnumConfigCategory;
import org.dreeam.leaf.config.annotations.Experimental;
public class SparklyPaperParallelWorldTicking extends ConfigModules {
public String getBasePath() {
return EnumConfigCategory.ASYNC.getBaseKeyName() + ".parallel-world-tracking";
}
@Experimental
public static boolean enabled = false;
public static int threads = 8;
public static boolean logContainerCreationStacktraces = false;