From e994fbde95a2403af5acdda350a4769645d6b15a Mon Sep 17 00:00:00 2001 From: ishland Date: Tue, 20 Aug 2024 21:59:03 +0800 Subject: [PATCH] fix: disable async chunks on login for now --- src/main/java/com/ishland/vmp/common/config/Config.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/com/ishland/vmp/common/config/Config.java b/src/main/java/com/ishland/vmp/common/config/Config.java index 27caf95..87642e2 100644 --- a/src/main/java/com/ishland/vmp/common/config/Config.java +++ b/src/main/java/com/ishland/vmp/common/config/Config.java @@ -48,7 +48,7 @@ public class Config { OPTIMIZED_ENTITY_TRACKING_USE_STAGING_AREA = getBoolean(properties, newProperties, "optimized_entity_tracking_use_staging_area", true); USE_MULTIPLE_NETTY_EVENT_LOOPS = getBoolean(properties, newProperties, "use_multiple_netty_event_loops", true); USE_ASYNC_PORTALS = getBoolean(properties, newProperties, "use_async_portals", true); - USE_ASYNC_CHUNKS_ON_LOGIN = getBoolean(properties, newProperties, "use_async_chunks_on_login", true); + USE_ASYNC_CHUNKS_ON_LOGIN = getBoolean(properties, newProperties, "use_async_chunks_on_login", false); USE_ASYNC_CHUNKS_ON_SOME_COMMANDS = getBoolean(properties, newProperties, "use_async_chunks_on_some_commands", false); SHOW_ASYNC_LOADING_MESSAGES = getBoolean(properties, newProperties, "show_async_loading_messages", true); SHOW_CHUNK_TRACKING_MESSAGES = getBoolean(properties, newProperties, "show_chunk_tracking_messages", true);