Configurable chat thread limit (#7878)

This commit is contained in:
Shane Freeder
2022-09-20 01:16:23 +01:00
parent d2239c40a5
commit e14a2a0cce
2 changed files with 64 additions and 0 deletions

View File

@@ -688,6 +688,15 @@ index 0000000000000000000000000000000000000000..00000000000000000000000000000000
+ public Misc misc;
+
+ public class Misc extends ConfigurationPart {
+ public class ChatThreads extends ConfigurationPart.Post {
+ private int chatExecutorCoreSize = -1;
+ private int chatExecutorMaxSize = -1;
+
+ @Override
+ public void postProcess() {
+ // TODO: FILL
+ }
+ }
+ public int maxJoinsPerTick = 3;
+ public boolean fixEntityPositionDesync = true;
+ public boolean loadPermissionsYmlBeforePlugins = true;